From 0739444f875d6bee10d19dce1ac880d99bd46464 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Mon, 22 Oct 2012 13:38:25 -0700 Subject: [PATCH 1/5] Transition to JSD --- api/ace.html | 5 - api/anchor.html | 33 - api/api.json | 65 ++ api/background_tokenizer.html | 30 - api/command_manager.html | 5 - api/document.html | 146 --- api/edit_session.html | 306 ------ api/editor.html | 343 ------ api/index.html | 4 - api/placeholder.html | 24 - api/range.html | 297 ------ api/renderloop.html | 3 - api/resources/csses/ace_api.css | 993 ------------------ api/resources/csses/bootstrap.min.css | 689 ------------ api/resources/csses/font-awesome.css | 303 ------ api/resources/font/fontawesome-webfont.eot | Bin 38708 -> 0 bytes api/resources/font/fontawesome-webfont.svg | 255 ----- api/resources/font/fontawesome-webfont.ttf | Bin 68476 -> 0 bytes api/resources/font/fontawesome-webfont.woff | Bin 41752 -> 0 bytes api/resources/images/Ace_ERD.svg | 4 - api/resources/images/ace_logo.png | Bin 42538 -> 0 bytes api/resources/images/ace_logo_menu.png | Bin 3252 -> 0 bytes api/resources/images/c9-log-footer.png | Bin 6859 -> 0 bytes api/resources/images/c9-sponsor.png | Bin 12244 -> 0 bytes api/resources/images/cloud9-logo.png | Bin 14564 -> 0 bytes api/resources/images/content-top.png | Bin 3172 -> 0 bytes api/resources/images/content_bg.png | Bin 4177 -> 0 bytes api/resources/images/content_top_bg.png | Bin 629 -> 0 bytes api/resources/images/dashed_back.png | Bin 3445 -> 0 bytes api/resources/images/favicon.ico | Bin 1150 -> 0 bytes api/resources/images/footer-bg.png | Bin 1090 -> 0 bytes api/resources/images/main_bg.png | Bin 9630 -> 0 bytes api/resources/images/member-sprites.png | Bin 3505 -> 0 bytes api/resources/images/menu_disc.png | Bin 556 -> 0 bytes api/resources/images/method_bg.png | Bin 8001 -> 0 bytes .../images/scrolled-heading-shadow.png | Bin 3903 -> 0 bytes api/resources/images/sidebar-top-bg.png | Bin 2693 -> 0 bytes api/resources/images/sidebar_border.png | Bin 2967 -> 0 bytes api/resources/images/swirl_divider.png | Bin 1043 -> 0 bytes api/resources/javascripts/bbq.js | 18 - api/resources/javascripts/bootstrap.js | 389 ------- api/resources/javascripts/clicker.js | 69 -- api/resources/javascripts/disqus-ext.js | 17 - api/resources/javascripts/ga.js | 9 - api/resources/javascripts/jquery-scrollspy.js | 98 -- api/resources/javascripts/jquery.collapse.js | 151 --- api/resources/javascripts/jquery.cookie.js | 96 -- api/resources/javascripts/jquery.js | 4 - api/resources/javascripts/plugins.js | 13 - .../javascripts/prettify-extension.js | 24 - api/resources/javascripts/prettify.js | 28 - api/resources/javascripts/ux.js | 185 ---- api/scrollbar.html | 19 - api/search.html | 35 - api/selection.html | 123 --- api/split.html | 36 - api/token_iterator.html | 18 - api/tokenizer.html | 8 - api/undomanager.html | 23 - api/virtual_renderer.html | 153 --- doc/build.js | 5 +- lib/ace/ace.js | 12 +- lib/ace/anchor.js | 44 +- lib/ace/background_tokenizer.js | 46 +- lib/ace/commands/command_manager.js | 10 +- lib/ace/document.js | 167 ++- lib/ace/edit_session.js | 529 ++++------ lib/ace/multi_select.js | 28 +- 68 files changed, 404 insertions(+), 5458 deletions(-) delete mode 100644 api/ace.html delete mode 100644 api/anchor.html create mode 100644 api/api.json delete mode 100644 api/background_tokenizer.html delete mode 100644 api/command_manager.html delete mode 100644 api/document.html delete mode 100644 api/edit_session.html delete mode 100644 api/editor.html delete mode 100644 api/index.html delete mode 100644 api/placeholder.html delete mode 100644 api/range.html delete mode 100644 api/renderloop.html delete mode 100644 api/resources/csses/ace_api.css delete mode 100644 api/resources/csses/bootstrap.min.css delete mode 100644 api/resources/csses/font-awesome.css delete mode 100644 api/resources/font/fontawesome-webfont.eot delete mode 100644 api/resources/font/fontawesome-webfont.svg delete mode 100644 api/resources/font/fontawesome-webfont.ttf delete mode 100644 api/resources/font/fontawesome-webfont.woff delete mode 100644 api/resources/images/Ace_ERD.svg delete mode 100644 api/resources/images/ace_logo.png delete mode 100644 api/resources/images/ace_logo_menu.png delete mode 100644 api/resources/images/c9-log-footer.png delete mode 100644 api/resources/images/c9-sponsor.png delete mode 100644 api/resources/images/cloud9-logo.png delete mode 100644 api/resources/images/content-top.png delete mode 100644 api/resources/images/content_bg.png delete mode 100644 api/resources/images/content_top_bg.png delete mode 100644 api/resources/images/dashed_back.png delete mode 100644 api/resources/images/favicon.ico delete mode 100644 api/resources/images/footer-bg.png delete mode 100644 api/resources/images/main_bg.png delete mode 100644 api/resources/images/member-sprites.png delete mode 100644 api/resources/images/menu_disc.png delete mode 100644 api/resources/images/method_bg.png delete mode 100644 api/resources/images/scrolled-heading-shadow.png delete mode 100644 api/resources/images/sidebar-top-bg.png delete mode 100644 api/resources/images/sidebar_border.png delete mode 100644 api/resources/images/swirl_divider.png delete mode 100644 api/resources/javascripts/bbq.js delete mode 100644 api/resources/javascripts/bootstrap.js delete mode 100644 api/resources/javascripts/clicker.js delete mode 100644 api/resources/javascripts/disqus-ext.js delete mode 100644 api/resources/javascripts/ga.js delete mode 100644 api/resources/javascripts/jquery-scrollspy.js delete mode 100644 api/resources/javascripts/jquery.collapse.js delete mode 100644 api/resources/javascripts/jquery.cookie.js delete mode 100644 api/resources/javascripts/jquery.js delete mode 100644 api/resources/javascripts/plugins.js delete mode 100644 api/resources/javascripts/prettify-extension.js delete mode 100644 api/resources/javascripts/prettify.js delete mode 100644 api/resources/javascripts/ux.js delete mode 100644 api/scrollbar.html delete mode 100644 api/search.html delete mode 100644 api/selection.html delete mode 100644 api/split.html delete mode 100644 api/token_iterator.html delete mode 100644 api/tokenizer.html delete mode 100644 api/undomanager.html delete mode 100644 api/virtual_renderer.html diff --git a/api/ace.html b/api/ace.html deleted file mode 100644 index 787a8efb..00000000 --- a/api/ace.html +++ /dev/null @@ -1,5 +0,0 @@ -

The main class required to set up an Ace instance in the browser.

-

Methods

This method embeds the Ace editor into the DOM, at the element provided by el.

-

This method embeds the Ace editor into the DOM, at the element provided by el.

-

Arguments

elString | DOMElement

Required. Either the id of an element, or the element itself

-
\ No newline at end of file diff --git a/api/anchor.html b/api/anchor.html deleted file mode 100644 index f3f25cd1..00000000 --- a/api/anchor.html +++ /dev/null @@ -1,33 +0,0 @@ -

Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated

-

Constructors

Creates a new Anchor and associates it with a document.

-

Creates a new Anchor and associates it with a document.

-

Arguments

docDocument

Required. The document to associate with the anchor

-
rowNumber

Required. The starting row position

-
columnNumber

Required. The starting column position

-

Events

    • Anchor.on("change", function(Object e))

    Fires whenever the anchor position changes.

    -

    Fires whenever the anchor position changes.

    -

    Events that can trigger this function include setPosition().

    -

    Arguments

    eObject

    Required. An object containing information about the anchor position. It has two properties:

    -
      -
    • old: An object describing the old Anchor position

      -
    • -
    • value: An object describing the new Anchor position

      -

      Both of these objects have a row and column property corresponding to the position.

      -
    • -
    -

    Methods

      • Internal

    Clips the anchor position to the specified row and column.

    -

    Clips the anchor position to the specified row and column.

    -

    Arguments

    rowNumber

    Required. The row index to clip the anchor to

    -
    columnNumber

    Required. The column index to clip the anchor to

    -
      • Anchor.detach()

      When called, the 'change' event listener is removed.

      -

      When called, the 'change' event listener is removed.

      -

      Returns the current document.

      -

      Returns the current document.

      -

      Returns an object identifying the row and column position of the current anchor.

      -

      Returns an object identifying the row and column position of the current anchor.

      -

      Sets the anchor position to the specified row and column. If noClip is true, the position is not clipped.

      -

      Sets the anchor position to the specified row and column. If noClip is true, the position is not clipped.

      -

      Arguments

      rowNumber

      Required. The row index to move the anchor to

      -
      columnNumber

      Required. The column index to move the anchor to

      -
      noClipBoolean

      Required. Identifies if you want the position to be clipped

      -
      \ No newline at end of file diff --git a/api/api.json b/api/api.json new file mode 100644 index 00000000..06f05f32 --- /dev/null +++ b/api/api.json @@ -0,0 +1,65 @@ +{ + "title": "Ace API", + "date": "Mon, 22 Oct 2012 19:03:39 GMT", + "tree": { + "children": [ + { + "id": "Ace", + "type": "class", + "description": "The main class required to set up an Ace instance in the browser.", + "short_description": "The main class required to set up an Ace instance in the browser.", + "line": 31, + "author": [], + "aliases": [], + "children": [ + { + "id": "Ace.edit", + "type": "class method", + "description": "Embeds the Ace editor into the DOM, at the element provided by `el`.", + "short_description": "Embeds the Ace editor into the DOM, at the element provided by `el`.", + "line": 57, + "author": [], + "signatures": [ + { + "arguments": [ + { + "name": "el", + "description": "Either the id of an element, or the element itself", + "types": [ + "String", + "DOMElement" + ], + "optional": false + } + ] + } + ], + "arguments": [ + { + "name": "el", + "description": "Either the id of an element, or the element itself", + "types": [ + "String", + "DOMElement" + ], + "optional": false + } + ], + "aliases": [], + "children": [], + "file": "../lib/ace/ace.js", + "name": "edit", + "name_prefix": "Ace.", + "path": "Ace.edit", + "outFile": "ace.html#Ace.edit" + } + ], + "file": "../lib/ace/ace.js", + "subclasses": [], + "name": "Ace", + "path": "Ace", + "outFile": "ace.html" + } + ] + } +} \ No newline at end of file diff --git a/api/background_tokenizer.html b/api/background_tokenizer.html deleted file mode 100644 index 8a11bcee..00000000 --- a/api/background_tokenizer.html +++ /dev/null @@ -1,30 +0,0 @@ -

      Tokenizes the current Document in the background, and caches the tokenized rows for future use. If a certain row is changed, everything below that row is re-tokenized.

      -

      Constructors

      Creates a new BackgroundTokenizer object.

      -

      Creates a new BackgroundTokenizer object.

      -

      Arguments

      tokenizerTokenizer

      Required. The tokenizer to use

      -
      editorEditor

      Required. The editor to associate with

      -

      Events

        • BackgroundTokenizer.on("update", function(Object e))

        Fires whenever the background tokeniziers between a range of rows are going to be updated.

        -

        Fires whenever the background tokeniziers between a range of rows are going to be updated.

        -

        Arguments

        eObject

        Required. An object containing two properties, first and last, which indicate the rows of the region being updated.

        -

        Methods

          • BackgroundTokenizer.fireUpdateEvent(Number firstRow, Number lastRow)

          Emits the 'update' event. firstRow and lastRow are used to define the boundaries of the region to be updated.

          -

          Emits the 'update' event. firstRow and lastRow are used to define the boundaries of the region to be updated.

          -

          Arguments

          firstRowNumber

          Required. The starting row region

          -
          lastRowNumber

          Required. The final row region

          -

          Returns the state of tokenization at the end of a row.

          -

          Returns the state of tokenization at the end of a row.

          -

          Arguments

          rowNumber

          Required. The row to get state at

          -

          Gives list of tokens of the row. (tokens are cached)

          -

          Gives list of tokens of the row. (tokens are cached)

          -

          Arguments

          rowNumber

          Required. The row to get tokens at

          -
            • BackgroundTokenizer.setDocument(Document doc)

            Sets a new document to associate with this object.

            -

            Sets a new document to associate with this object.

            -

            Arguments

            docDocument

            Required. The new document to associate with

            -
              • BackgroundTokenizer.setTokenizer(Tokenizer tokenizer)

              Sets a new tokenizer for this object.

              -

              Sets a new tokenizer for this object.

              -

              Arguments

              tokenizerTokenizer

              Required. The new tokenizer to use

              -
                • BackgroundTokenizer.start(Number startRow)

                Starts tokenizing at the row indicated.

                -

                Starts tokenizing at the row indicated.

                -

                Arguments

                startRowNumber

                Required. The row to start at

                -
                  • BackgroundTokenizer.stop()

                  Stops tokenizing.

                  -

                  Stops tokenizing.

                  -
                  \ No newline at end of file diff --git a/api/command_manager.html b/api/command_manager.html deleted file mode 100644 index b580d309..00000000 --- a/api/command_manager.html +++ /dev/null @@ -1,5 +0,0 @@ -

                  Constructors

                  TODO

                  -

                  TODO

                  -

                  Arguments

                  platformString

                  Required. Identifier for the platform; must be either 'mac' or 'win'

                  -
                  commandsArray

                  Required. A list of commands

                  -
                  \ No newline at end of file diff --git a/api/document.html b/api/document.html deleted file mode 100644 index 577fe66f..00000000 --- a/api/document.html +++ /dev/null @@ -1,146 +0,0 @@ -

                  Contains the text of the document. Document can be attached to several EditSessions. At its core, Documents are just an array of strings, with each row in the document matching up to the array index.

                  -

                  Constructors

                  Creates a new Document. If text is included, the Document contains those strings; otherwise, it's empty.

                  -

                  Creates a new Document. If text is included, the Document contains those strings; otherwise, it's empty.

                  -

                  Arguments

                  textString | Array

                  Required. The starting text

                  -

                  Events

                    • Document.on("change", function(Object e))

                    Fires whenever the document changes.

                    -

                    Fires whenever the document changes.

                    -

                    Several methods trigger different "change" events. Below is a list of each action type, followed by each property that's also available:

                    - -

                    Arguments

                    eObject

                    Required. Contains at least one property called "action". "action" indicates the action that triggered the change. Each action also has a set of additional properties.

                    -

                    Methods

                      • Document.$clipPosition(position)
                      • Internal
                      • Document.$detectNewLine(text)
                        • Void
                      • Internal

                    Splits a string of text on any newline (\n) or carriage-return ('\r') characters.

                    -

                    Splits a string of text on any newline (\n) or carriage-return ('\r') characters.

                    -

                    Arguments

                    textString

                    Required. The text to work with

                    -

                    Returns

                    Array of Strings

                    A String array, with each index containing a piece of the original text string.

                    -
                      • Document.applyDeltas(deltas)
                        • Void

                      Applies all the changes previously accumulated. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                      -

                      Applies all the changes previously accumulated. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                      -

                      Creates a new Anchor to define a floating point in the document.

                      -

                      Creates a new Anchor to define a floating point in the document.

                      -

                      Arguments

                      rowNumber

                      Required. The row number to use

                      -
                      columnNumber

                      Required. The column number to use

                      -
                        • Document.getAllLines()

                        Returns all lines in the document as string array. Warning: The caller should not modify this array!

                        -

                        Returns all lines in the document as string array. Warning: The caller should not modify this array!

                        -

                        Returns the number of rows in the document.

                        -

                        Returns the number of rows in the document.

                        -

                        Returns a verbatim copy of the given line as it is in the document

                        -

                        Returns a verbatim copy of the given line as it is in the document

                        -

                        Arguments

                        rowNumber

                        Required. The row index to retrieve

                        -

                        Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                        -

                        Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                        -

                        Arguments

                        firstRowNumber

                        Required. The first row index to retrieve

                        -
                        lastRowNumber

                        Required. The final row index to retrieve

                        -
                          • Document.getNewLineCharacter()

                          Returns the newline character that's being used, depending on the value of newLineMode.

                          -

                          Returns the newline character that's being used, depending on the value of newLineMode.

                          -

                          Returns

                          String

                          If newLineMode == windows, \r\n is returned.

                          -
                            -
                          • If newLineMode == unix, \n is returned.

                            -
                          • -
                          • If newLineMode == auto, the value of autoNewLine is returned.

                            -
                          • -
                          -
                            • Document.getNewLineMode()

                            Returns the type of newlines being used; either windows, unix, or auto

                            -

                            Returns the type of newlines being used; either windows, unix, or auto

                            -

                            Given a range within the document, this function returns all the text within that range as a single string.

                            -

                            Given a range within the document, this function returns all the text within that range as a single string.

                            -

                            Arguments

                            rangeRange

                            Required. The range to work with

                            -

                            Returns all the lines in the document as a single string, split by the new line character.

                            -

                            Returns all the lines in the document as a single string, split by the new line character.

                            -

                            Arguments

                            positionNumber

                            Required. The position to start inserting at

                            -
                            textString

                            Required. A chunk of text to insert

                            -

                            Returns

                            Number

                            The position of the last line of text. If the length of text is 0, this function simply returns position.

                            -
                              -
                            • Inserts a block of text and the indicated position.
                            • -
                            -

                            Inserts text into the position at the current row. This method also triggers the 'change' event.

                            -

                            Inserts text into the position at the current row. This method also triggers the 'change' event.

                            -

                            Arguments

                            positionNumber

                            Required. The position to insert at

                            -
                            textString

                            Required. A chunk of text

                            -

                            Returns

                            Object

                            Returns an object containing the final row and column, like this:

                            -
                              -
                            • {row: endRow, column: 0}
                            • -
                            -
                            Number

                            If text is empty, this function returns the value of position

                            -

                            Inserts the elements in lines into the document, starting at the row index given by row. This method also triggers the 'change' event.

                            -

                            Inserts the elements in lines into the document, starting at the row index given by row. This method also triggers the 'change' event.

                            -

                            Arguments

                            rowNumber

                            Required. The index of the row to insert at

                            -
                            linesArray

                            Required. An array of strings

                            -

                            Returns

                            Object

                            Returns an object containing the final row and column, like this:

                            -
                              -
                            • {row: endRow, column: 0}

                              -
                            • -
                            • If lines is empty, this function returns an object containing the current row, and column, like this:

                              -
                            • -
                            • {row: row, column: 0}

                              -
                            • -
                            -

                            Inserts a new line into the document at the current row's position. This method also triggers the 'change' event.

                            -

                            Inserts a new line into the document at the current row's position. This method also triggers the 'change' event.

                            -

                            Arguments

                            positionString

                            Required. The position to insert at

                            -

                            Returns

                            Object

                            Returns an object containing the final row and column, like this:

                            -
                              -
                            • {row: endRow, column: 0}
                            • -
                            -

                            Returns true if text is a newline character (either \r\n, \r, or \n).

                            -

                            Returns true if text is a newline character (either \r\n, \r, or \n).

                            -

                            Arguments

                            textString

                            Required. The text to check

                            -

                            Removes the range from the document.

                            -

                            Removes the range from the document.

                            -

                            Arguments

                            rangeRange

                            Required. A specified Range to remove

                            -

                            Returns

                            Object

                            Returns the new start property of the range, which contains startRow and startColumn. If range is empty, this function returns the unmodified value of range.start.

                            -

                            Removes the specified columns from the row. This method also triggers the 'change' event.

                            -

                            Removes the specified columns from the row. This method also triggers the 'change' event.

                            -

                            Arguments

                            rowNumber

                            Required. The row to remove from

                            -
                            startColumnNumber

                            Required. The column to start removing at

                            -
                            endColumnNumber

                            Required. The column to stop removing at

                            -

                            Returns

                            Object

                            Returns an object containing startRow and startColumn, indicating the new row and column values.
                            If startColumn is equal to endColumn, this function returns nothing.

                            -

                            Removes a range of full lines. This method also triggers the 'change' event.

                            -

                            Removes a range of full lines. This method also triggers the 'change' event.

                            -

                            Arguments

                            firstRowNumber

                            Required. The first row to be removed

                            -
                            lastRowNumber

                            Required. The last row to be removed

                            -

                            Returns

                            Array of Strings

                            Returns all the removed lines.

                            -
                              • Document.removeNewLine(Number row)
                                • Void

                              Removes the new line between row and the row immediately following it. This method also triggers the 'change' event.

                              -

                              Removes the new line between row and the row immediately following it. This method also triggers the 'change' event.

                              -

                              Arguments

                              rowNumber

                              Required. The row to check

                              -

                              Replaces a range in the document with the new text.

                              -

                              Replaces a range in the document with the new text.

                              -

                              Arguments

                              rangeRange

                              Required. A specified Range to replace

                              -
                              textString

                              Required. The new text to use as a replacement

                              -

                              Returns

                              Object

                              Returns an object containing the final row and column, like this:

                              -
                                -
                              • {row: endRow, column: 0}

                                -
                              • -
                              • If the text and range are empty, this function returns an object containing the current range.start value.

                                -
                              • -
                              • If the text is the exact same as what currently exists, this function returns an object containing the current range.end value.

                                -
                              • -
                              -
                                • Document.revertDeltas(deltas)
                                  • Void

                                Reverts any changes previously applied. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                -

                                Reverts any changes previously applied. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                -
                                  • Document.setNewLineMode(String newLineMode)
                                    • Void

                                  Sets the new line mode.

                                  -

                                  Sets the new line mode.

                                  -

                                  Arguments

                                  newLineModeString

                                  Required. The newline mode to use; can be either windows, unix, or auto

                                  -
                                    • Document.setValue(String text)
                                      • Void

                                    Replaces all the lines in the current Document with the value of text.

                                    -

                                    Replaces all the lines in the current Document with the value of text.

                                    -

                                    Arguments

                                    textString

                                    Required. The text to use

                                    -
                                    \ No newline at end of file diff --git a/api/edit_session.html b/api/edit_session.html deleted file mode 100644 index 398d61c3..00000000 --- a/api/edit_session.html +++ /dev/null @@ -1,306 +0,0 @@ -

                                    EditSession [edit]

                                    Stores all the data about Editor state providing easy way to change editors state. EditSession can be attached to only one Document. Same Document can be attached to several EditSessions.

                                    -

                                    Constructors

                                    Sets up a new EditSession and associates it with the given Document and TextMode.

                                    -

                                    Sets up a new EditSession and associates it with the given Document and TextMode.

                                    -

                                    Arguments

                                    textDocument | String

                                    Required. If text is a Document, it associates the EditSession with it. Otherwise, a new Document is created, with the initial text

                                    -
                                    modeTextMode

                                    Required. The inital language mode to use for the document

                                    -

                                    Events

                                      • EditSession.on("change", function(Object e))

                                      Emitted when the document changes.

                                      -

                                      Emitted when the document changes.

                                      -

                                      Arguments

                                      eObject

                                      Required. An object containing a delta of information about the change.

                                      -
                                        • EditSession.on("changeBackMarker", function())

                                        Emitted when a back marker changes.

                                        -

                                        Emitted when a back marker changes.

                                        -
                                          • EditSession.on("changeBreakpoint", function())

                                          Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.

                                          -

                                          Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.

                                          -
                                            • EditSession.on("changeFold", function(e))

                                            Emitted when a code fold is added or removed.

                                            -

                                            Emitted when a code fold is added or removed.

                                            -
                                              • EditSession.on("changeFrontMarker", function())

                                              Emitted when a front marker changes.

                                              -

                                              Emitted when a front marker changes.

                                              -
                                                • EditSession.on("changeMode", function())

                                                Emitted when the current mode changes.

                                                -

                                                Emitted when the current mode changes.

                                                -
                                                  • EditSession.on("changeScrollLeft", function(Number scrollLeft))

                                                  Emitted when the scroll left changes.

                                                  -

                                                  Emitted when the scroll left changes.

                                                  -

                                                  Arguments

                                                  scrollLeftNumber

                                                  Required. The new scroll left value

                                                  -
                                                    • EditSession.on("changeScrollTop", function(Number scrollTop))

                                                    Emitted when the scroll top changes.

                                                    -

                                                    Emitted when the scroll top changes.

                                                    -

                                                    Arguments

                                                    scrollTopNumber

                                                    Required. The new scroll top value

                                                    -
                                                      • EditSession.on("changeWrapLimit", function())

                                                      Emitted when the wrapping limit changes.

                                                      -

                                                      Emitted when the wrapping limit changes.

                                                      -
                                                        • EditSession.on("changeWrapMode", function())

                                                        Emitted when the wrap mode changes.

                                                        -

                                                        Emitted when the wrap mode changes.

                                                        -
                                                          • EditSession.on("loadMode", function(e))
                                                            • EditSession.on("tokenizerUpdate", function(Object e))

                                                            Emitted when a background tokenizer asynchronously processes new rows.

                                                            -

                                                            Emitted when a background tokenizer asynchronously processes new rows.

                                                            -

                                                            Arguments

                                                            eObject

                                                            Required. An object containing one property, "data", that contains information about the changing rows

                                                            -

                                                            Methods

                                                              • EditSession.$computeWrapSplits(tokens, wrapLimit)
                                                              • Internal
                                                              • EditSession.$constrainWrapLimit(wrapLimit)
                                                              • Internal
                                                              • EditSession.$detectNewLine(String text)
                                                              • Internal

                                                            If text contains either the newline (\n) or carriage-return ('\r') characters, $autoNewLine stores that value.

                                                            -

                                                            If text contains either the newline (\n) or carriage-return ('\r') characters, $autoNewLine stores that value.

                                                            -

                                                            Arguments

                                                            textString

                                                            Required. A block of text

                                                            -

                                                            Given a string, returns an array of the display characters, including tabs and spaces.

                                                            -

                                                            Given a string, returns an array of the display characters, including tabs and spaces.

                                                            -

                                                            Arguments

                                                            strString

                                                            Required. The string to check

                                                            -
                                                            offsetNumber

                                                            Required. The value to start at

                                                            -

                                                            Calculates the width of the string str on the screen while assuming that the string starts at the first column on the screen.

                                                            -

                                                            Calculates the width of the string str on the screen while assuming that the string starts at the first column on the screen.

                                                            -

                                                            Arguments

                                                            strString

                                                            Required. The string to calculate the screen width of

                                                            -
                                                            maxScreenColumnNumber

                                                            Required.

                                                            -
                                                            screenColumnNumber

                                                            Required.

                                                            -

                                                            Returns

                                                            Array of Numbers

                                                            Returns an int[] array with two elements:

                                                            -
                                                              -
                                                            • The first position indicates the number of columns for str on screen.

                                                              -
                                                            • -
                                                            • The second value contains the position of the document column that this function read until.

                                                              -
                                                            • -
                                                            -
                                                              • EditSession.$getUndoSelection(deltas, isUndo, lastUndoRange)
                                                              • Internal
                                                              • EditSession.$resetRowCache(Number row)
                                                              • Internal

                                                            Arguments

                                                            rowNumber

                                                            Required. The row to work with

                                                            -
                                                              • EditSession.$startWorker()
                                                              • Internal
                                                              • EditSession.$syncInformUndoManager()
                                                              • Internal
                                                              • EditSession.$updateInternalDataOnChange()
                                                              • Internal
                                                              • EditSession.$updateWrapData(firstRow, lastRow)
                                                              • Internal

                                                            Adds a dynamic marker to the session.

                                                            -

                                                            Adds a dynamic marker to the session.

                                                            -

                                                            Arguments

                                                            markerObject

                                                            Required. object with update method

                                                            -
                                                            inFrontBoolean

                                                            Required. Set to true to establish a front marker

                                                            -
                                                              • EditSession.addGutterDecoration(Number row, String className)
                                                                • Void

                                                              Adds className to the row, to be used for CSS stylings and whatnot.

                                                              -

                                                              Adds className to the row, to be used for CSS stylings and whatnot.

                                                              -

                                                              Arguments

                                                              rowNumber

                                                              Required. The row number

                                                              -
                                                              classNameString

                                                              Required. The class to add

                                                              -

                                                              Adds a new marker to the given Range. If inFront is true, a front marker is defined, and the 'changeFrontMarker' event fires; otherwise, the 'changeBackMarker' event fires.

                                                              -

                                                              Adds a new marker to the given Range. If inFront is true, a front marker is defined, and the 'changeFrontMarker' event fires; otherwise, the 'changeBackMarker' event fires.

                                                              -

                                                              Arguments

                                                              rangeRange

                                                              Required. Define the range of the marker

                                                              -
                                                              clazzString

                                                              Required. Set the CSS class for the marker

                                                              -
                                                              typeFunction | String

                                                              Required. Identify the type of the marker

                                                              -
                                                              inFrontBoolean

                                                              Required. Set to true to establish a front marker

                                                              -

                                                              This should generally only be called by the renderer when a resize is detected.

                                                              -

                                                              This should generally only be called by the renderer when a resize is detected.

                                                              -

                                                              Arguments

                                                              desiredLimitNumber

                                                              Required. The new wrap limit

                                                              -
                                                                • EditSession.clearAnnotations()

                                                                Clears all the annotations for this session. This function also triggers the 'changeAnnotation' event.

                                                                -

                                                                Clears all the annotations for this session. This function also triggers the 'changeAnnotation' event.

                                                                -
                                                                  • EditSession.clearBreakpoint(Number row)

                                                                  Removes a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                  -

                                                                  Removes a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                  -

                                                                  Arguments

                                                                  rowNumber

                                                                  Required. A row index

                                                                  -
                                                                    • EditSession.clearBreakpoints()

                                                                    Removes all breakpoints on the rows. This function also emites the 'changeBreakpoint' event.

                                                                    -

                                                                    Removes all breakpoints on the rows. This function also emites the 'changeBreakpoint' event.

                                                                    -
                                                                      • EditSession.documentToScreenColumn(row, docColumn)
                                                                      • Internal

                                                                    Converts document coordinates to screen coordinates. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                    -

                                                                    Converts document coordinates to screen coordinates. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                    -

                                                                    Arguments

                                                                    docRowNumber

                                                                    Required. The document row to check

                                                                    -
                                                                    docColumnNumber

                                                                    Required. The document column to check

                                                                    -

                                                                    Returns

                                                                    Object

                                                                    The object returned by this method has two properties: row and column.

                                                                    -
                                                                      • EditSession.documentToScreenRow(docRow, docColumn)
                                                                      • Internal

                                                                    Duplicates all the text between firstRow and lastRow.

                                                                    -

                                                                    Duplicates all the text between firstRow and lastRow.

                                                                    -

                                                                    Arguments

                                                                    firstRowNumber

                                                                    Required. The starting row to duplicate

                                                                    -
                                                                    lastRowNumber

                                                                    Required. The final row to duplicate

                                                                    -

                                                                    Returns

                                                                    Number

                                                                    Returns the number of new rows added; in other words, lastRow - firstRow + 1.

                                                                    -
                                                                      • EditSession.getAnnotations()

                                                                      Returns the annotations for the EditSession.

                                                                      -

                                                                      Returns the annotations for the EditSession.

                                                                      -

                                                                      Gets the range of a word, including its right whitespace.

                                                                      -

                                                                      Gets the range of a word, including its right whitespace.

                                                                      -

                                                                      Arguments

                                                                      rowNumber

                                                                      Required. The row number to start from

                                                                      -
                                                                      columnNumber

                                                                      Required. The column number to start from

                                                                      -
                                                                        • EditSession.getBreakpoints()

                                                                        Returns an array of numbers, indicating which rows have breakpoints.

                                                                        -

                                                                        Returns an array of numbers, indicating which rows have breakpoints.

                                                                        -

                                                                        Returns the Document associated with this session.

                                                                        -

                                                                        Returns the Document associated with this session.

                                                                        -
                                                                          • EditSession.getDocumentLastRowColumnPosition(docRow, docColumn)
                                                                          • Internal
                                                                          • Related to:

                                                                        Returns the number of rows in the document.

                                                                        -

                                                                        Returns the number of rows in the document.

                                                                        -

                                                                        Returns a verbatim copy of the given line as it is in the document

                                                                        -

                                                                        Returns a verbatim copy of the given line as it is in the document

                                                                        -

                                                                        Arguments

                                                                        rowNumber

                                                                        Required. The row to retrieve from

                                                                        -

                                                                        Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                        -

                                                                        Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                        -

                                                                        Arguments

                                                                        firstRowNumber

                                                                        Required. The first row index to retrieve

                                                                        -
                                                                        lastRowNumber

                                                                        Required. The final row index to retrieve

                                                                        -

                                                                        Returns an array containing the IDs of all the markers, either front or back.

                                                                        -

                                                                        Returns an array containing the IDs of all the markers, either front or back.

                                                                        -

                                                                        Arguments

                                                                        inFrontBoolean

                                                                        Required. If true, indicates you only want front markers; false indicates only back markers

                                                                        -

                                                                        Returns the current text mode.

                                                                        -

                                                                        Returns the current text mode.

                                                                        -
                                                                          • EditSession.getNewLineMode()
                                                                          • Related to:

                                                                        Returns the current new line mode.

                                                                        -

                                                                        Returns the current new line mode.

                                                                        -

                                                                        Returns true if overwrites are enabled; false otherwise.

                                                                        -

                                                                        Returns true if overwrites are enabled; false otherwise.

                                                                        -

                                                                        Returns number of screenrows in a wrapped line.

                                                                        -

                                                                        Returns number of screenrows in a wrapped line.

                                                                        -

                                                                        Arguments

                                                                        rowNumber

                                                                        Required. The row number to check

                                                                        -
                                                                          • EditSession.getRowSplitData(row)
                                                                          • Internal
                                                                          • Internal
                                                                          • Related to:

                                                                        Returns the column position (on screen) for the last character in the provided row.

                                                                        -

                                                                        Returns the column position (on screen) for the last character in the provided row.

                                                                        -

                                                                        Arguments

                                                                        screenRowNumber

                                                                        Required. The screen row to check

                                                                        -
                                                                          • EditSession.getScreenLength()

                                                                          Returns the length of the screen.

                                                                          -

                                                                          Returns the length of the screen.

                                                                          -

                                                                          The distance to the next tab stop at the specified screen column.

                                                                          -

                                                                          The distance to the next tab stop at the specified screen column.

                                                                          -

                                                                          Arguments

                                                                          screenColumnNumber

                                                                          Required. The screen column to check

                                                                          -
                                                                            • EditSession.getScreenWidth()

                                                                            Returns the width of the screen.

                                                                            -

                                                                            Returns the width of the screen.

                                                                            -
                                                                              • EditSession.getScrollLeft()

                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                              -

                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                              -
                                                                                • EditSession.getScrollTop()

                                                                                Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                -

                                                                                Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                -

                                                                                Returns the string of the current selection.

                                                                                -

                                                                                Returns the string of the current selection.

                                                                                -

                                                                                Returns the state of tokenization at the end of a row.

                                                                                -

                                                                                Returns the state of tokenization at the end of a row.

                                                                                -

                                                                                Arguments

                                                                                rowNumber

                                                                                Required. The row to start at

                                                                                -
                                                                                  • EditSession.getTabSize()

                                                                                  Returns the current tab size.

                                                                                  -

                                                                                  Returns the current tab size.

                                                                                  -
                                                                                    • EditSession.getTabString()

                                                                                    Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by getTabSize()); otherwise it's simply '\t'.

                                                                                    -

                                                                                    Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by getTabSize()); otherwise it's simply '\t'.

                                                                                    -
                                                                                      • Related to:

                                                                                    Given a range within the document, this function returns all the text within that range as a single string.

                                                                                    -

                                                                                    Given a range within the document, this function returns all the text within that range as a single string.

                                                                                    -

                                                                                    Arguments

                                                                                    rangeRange

                                                                                    Required. The range to work with

                                                                                    -

                                                                                    Returns an object indicating the token at the current row. The object has two properties: index and start.

                                                                                    -

                                                                                    Returns an object indicating the token at the current row. The object has two properties: index and start.

                                                                                    -

                                                                                    Arguments

                                                                                    rowNumber

                                                                                    Required. The row number to retrieve from

                                                                                    -
                                                                                    columnNumber

                                                                                    Required. The column number to retrieve from

                                                                                    -

                                                                                    Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.

                                                                                    -

                                                                                    Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.

                                                                                    -

                                                                                    Arguments

                                                                                    rowNumber

                                                                                    Required. The row to start at

                                                                                    -

                                                                                    Returns the current undo manager.

                                                                                    -

                                                                                    Returns the current undo manager.

                                                                                    -
                                                                                      • EditSession.getUseSoftTabs()

                                                                                      Returns true if soft tabs are being used, false otherwise.

                                                                                      -

                                                                                      Returns true if soft tabs are being used, false otherwise.

                                                                                      -

                                                                                      Returns true if workers are being used.

                                                                                      -

                                                                                      Returns true if workers are being used.

                                                                                      -
                                                                                        • EditSession.getUseWrapMode()

                                                                                        Returns true if wrap mode is being used; false otherwise.

                                                                                        -

                                                                                        Returns true if wrap mode is being used; false otherwise.

                                                                                        -

                                                                                        Given a starting row and column, this method returns the Range of the first word boundary it finds.

                                                                                        -

                                                                                        Given a starting row and column, this method returns the Range of the first word boundary it finds.

                                                                                        -

                                                                                        Arguments

                                                                                        rowNumber

                                                                                        Required. The row to start at

                                                                                        -
                                                                                        columnNumber

                                                                                        Required. The column to start at

                                                                                        -
                                                                                          • EditSession.getWrapLimit()

                                                                                          Returns the value of wrap limit.

                                                                                          -

                                                                                          Returns the value of wrap limit.

                                                                                          -
                                                                                            • EditSession.getWrapLimitRange()

                                                                                            Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:

                                                                                            -

                                                                                            Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:

                                                                                            -
                                                                                            { min: wrapLimitRange_min, max: wrapLimitRange_max }
                                                                                            -

                                                                                            Indents all the rows, from startRow to endRow (inclusive), by prefixing each row with the token in indentString.

                                                                                            -

                                                                                            Indents all the rows, from startRow to endRow (inclusive), by prefixing each row with the token in indentString.

                                                                                            -

                                                                                            If indentString contains the '\t' character, it's replaced by whatever is defined by getTabString().

                                                                                            -

                                                                                            Arguments

                                                                                            startRowNumber

                                                                                            Required. Starting row

                                                                                            -
                                                                                            endRowNumber

                                                                                            Required. Ending row

                                                                                            -
                                                                                            indentStringString

                                                                                            Required. The indent token

                                                                                            -

                                                                                            Inserts a block of text and the indicated position.

                                                                                            -

                                                                                            Inserts a block of text and the indicated position.

                                                                                            -

                                                                                            Arguments

                                                                                            positionNumber

                                                                                            Required. The position to start inserting at

                                                                                            -
                                                                                            textString

                                                                                            Required. A chunk of text to insert

                                                                                            -

                                                                                            Returns

                                                                                            Number

                                                                                            The position of the last line of text. If the length of text is 0, this function simply returns position.

                                                                                            -

                                                                                            Returns true if the character at the position is a soft tab.

                                                                                            -

                                                                                            Returns true if the character at the position is a soft tab.

                                                                                            -

                                                                                            Arguments

                                                                                            positionObject

                                                                                            Required. The position to check

                                                                                            -

                                                                                            Arguments

                                                                                            firstRowNumber

                                                                                            Required. The starting row to move down

                                                                                            -
                                                                                            lastRowNumber

                                                                                            Required. The final row to move down

                                                                                            -

                                                                                            Returns

                                                                                            Number

                                                                                            If firstRow is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1.

                                                                                            -

                                                                                            Shifts all the lines in the document up one, starting from firstRow and ending at lastRow.

                                                                                            -

                                                                                            Shifts all the lines in the document up one, starting from firstRow and ending at lastRow.

                                                                                            -

                                                                                            Arguments

                                                                                            firstRowNumber

                                                                                            Required. The starting row to move up

                                                                                            -
                                                                                            lastRowNumber

                                                                                            Required. The final row to move up

                                                                                            -

                                                                                            Returns

                                                                                            Number

                                                                                            If firstRow is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1.

                                                                                            -

                                                                                            { row: newRowLocation, column: newColumnLocation }

                                                                                            -

                                                                                            { row: newRowLocation, column: newColumnLocation }

                                                                                            -

                                                                                            Arguments

                                                                                            fromRangeRange

                                                                                            Required. The range of text you want moved within the document

                                                                                            -
                                                                                            toPositionObject

                                                                                            Required. The location (row and column) where you want to move the text to

                                                                                            -

                                                                                            Returns

                                                                                            Range

                                                                                            The new range where the text was moved to.

                                                                                            -
                                                                                              -
                                                                                            • Moves a range of text from the given range to the given position. toPosition is an object that looks like this:
                                                                                            • -
                                                                                            -
                                                                                              • EditSession.onReloadTokenizer(e)

                                                                                              Reloads all the tokens on the current session. This function calls BackgroundTokenizer.start () to all the rows; it also emits the 'tokenizerUpdate' event.

                                                                                              -

                                                                                              Reloads all the tokens on the current session. This function calls BackgroundTokenizer.start () to all the rows; it also emits the 'tokenizerUpdate' event.

                                                                                              -
                                                                                                • EditSession.outdentRows(Range range)

                                                                                                Outdents all the rows defined by the start and end properties of range.

                                                                                                -

                                                                                                Outdents all the rows defined by the start and end properties of range.

                                                                                                -

                                                                                                Arguments

                                                                                                rangeRange

                                                                                                Required. A range of rows

                                                                                                -

                                                                                                Re-implements a previously undone change to your document.

                                                                                                -

                                                                                                Re-implements a previously undone change to your document.

                                                                                                -

                                                                                                Arguments

                                                                                                deltasArray

                                                                                                Required. An array of previous changes

                                                                                                -
                                                                                                dontSelectBoolean

                                                                                                Required. If true, doesn't select the range of where the change occured

                                                                                                -

                                                                                                Removes the range from the document.

                                                                                                -

                                                                                                Removes the range from the document.

                                                                                                -

                                                                                                Arguments

                                                                                                rangeRange

                                                                                                Required. A specified Range to remove

                                                                                                -

                                                                                                Returns

                                                                                                Object

                                                                                                The new start property of the range, which contains startRow and startColumn. If range is empty, this function returns the unmodified value of range.start.

                                                                                                -
                                                                                                  • EditSession.removeGutterDecoration(Number row, String className)
                                                                                                    • Void

                                                                                                  Removes className from the row.

                                                                                                  -

                                                                                                  Removes className from the row.

                                                                                                  -

                                                                                                  Arguments

                                                                                                  rowNumber

                                                                                                  Required. The row number

                                                                                                  -
                                                                                                  classNameString

                                                                                                  Required. The class to add

                                                                                                  -
                                                                                                    • EditSession.removeMarker(Number markerId)

                                                                                                    Removes the marker with the specified ID. If this marker was in front, the 'changeFrontMarker' event is emitted. If the marker was in the back, the 'changeBackMarker' event is emitted.

                                                                                                    -

                                                                                                    Removes the marker with the specified ID. If this marker was in front, the 'changeFrontMarker' event is emitted. If the marker was in the back, the 'changeBackMarker' event is emitted.

                                                                                                    -

                                                                                                    Arguments

                                                                                                    markerIdNumber

                                                                                                    Required. A number representing a marker

                                                                                                    -

                                                                                                    Replaces a range in the document with the new text.

                                                                                                    -

                                                                                                    Replaces a range in the document with the new text.

                                                                                                    -

                                                                                                    Arguments

                                                                                                    rangeRange

                                                                                                    Required. A specified Range to replace

                                                                                                    -
                                                                                                    textString

                                                                                                    Required. The new text to use as a replacement

                                                                                                    -

                                                                                                    Returns

                                                                                                    Object

                                                                                                    Returns an object containing the final row and column, like this:

                                                                                                    -
                                                                                                      -
                                                                                                    • {row: endRow, column: 0}

                                                                                                      -
                                                                                                    • -
                                                                                                    • If the text and range are empty, this function returns an object containing the current range.start value.

                                                                                                      -
                                                                                                    • -
                                                                                                    • If the text is the exact same as what currently exists, this function returns an object containing the current range.end value.

                                                                                                      -
                                                                                                    • -
                                                                                                    -
                                                                                                      • EditSession.screenToDocumentColumn(screenRow, screenColumn)
                                                                                                      • Internal
                                                                                                      • Related to:

                                                                                                    Converts characters coordinates on the screen to characters coordinates within the document. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                    -

                                                                                                    Converts characters coordinates on the screen to characters coordinates within the document. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                    -

                                                                                                    Arguments

                                                                                                    screenRowNumber

                                                                                                    Required. The screen row to check

                                                                                                    -
                                                                                                    screenColumnNumber

                                                                                                    Required. The screen column to check

                                                                                                    -

                                                                                                    Returns

                                                                                                    Object

                                                                                                    The object returned has two properties: row and column.

                                                                                                    -
                                                                                                      • EditSession.screenToDocumentRow(screenRow, screenColumn)
                                                                                                      • Internal
                                                                                                      • EditSession.setAnnotations(Array annotations)

                                                                                                      Sets annotations for the EditSession. This functions emits the 'changeAnnotation' event.

                                                                                                      -

                                                                                                      Sets annotations for the EditSession. This functions emits the 'changeAnnotation' event.

                                                                                                      -

                                                                                                      Arguments

                                                                                                      annotationsArray

                                                                                                      Required. A list of annotations

                                                                                                      -

                                                                                                      Sets a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                      -

                                                                                                      Sets a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                      -

                                                                                                      Arguments

                                                                                                      rowNumber

                                                                                                      Required. A row index

                                                                                                      -
                                                                                                      classNameString

                                                                                                      Required. Class of the breakpoint

                                                                                                      -
                                                                                                        • EditSession.setBreakpoints(Array rows)

                                                                                                        Sets a breakpoint on every row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                        -

                                                                                                        Sets a breakpoint on every row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                        -

                                                                                                        Arguments

                                                                                                        rowsArray

                                                                                                        Required. An array of row indicies

                                                                                                        -

                                                                                                        Sets the EditSession to point to a new Document. If a BackgroundTokenizer exists, it also points to doc.

                                                                                                        -

                                                                                                        Sets the EditSession to point to a new Document. If a BackgroundTokenizer exists, it also points to doc.

                                                                                                        -

                                                                                                        Arguments

                                                                                                        docDocument

                                                                                                        Required. The new Document to use

                                                                                                        -

                                                                                                        Sets a new text mode for the EditSession. This method also emits the 'changeMode' event. If a BackgroundTokenizer is set, the 'tokenizerUpdate' event is also emitted.

                                                                                                        -

                                                                                                        Sets a new text mode for the EditSession. This method also emits the 'changeMode' event. If a BackgroundTokenizer is set, the 'tokenizerUpdate' event is also emitted.

                                                                                                        -

                                                                                                        Arguments

                                                                                                        modeTextMode

                                                                                                        Required. Set a new text mode

                                                                                                        -
                                                                                                          • EditSession.setNewLineMode(String newLineMode)
                                                                                                          • Related to:

                                                                                                        Sets the new line mode.

                                                                                                        -

                                                                                                        Sets the new line mode.

                                                                                                        -

                                                                                                        Arguments

                                                                                                        newLineModeString

                                                                                                        Required. The newline mode to use; can be either windows, unix, or auto

                                                                                                        -
                                                                                                          • EditSession.setOverwrite(Boolean overwrite)

                                                                                                          Pass in true to enable overwrites in your session, or false to disable.

                                                                                                          -

                                                                                                          Pass in true to enable overwrites in your session, or false to disable.

                                                                                                          -

                                                                                                          If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                          -

                                                                                                          Arguments

                                                                                                          overwriteBoolean

                                                                                                          Required. Defines wheter or not to set overwrites

                                                                                                          -
                                                                                                            • EditSession.setScrollLeft(scrollLeft)

                                                                                                            Sets the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                            -

                                                                                                            Sets the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                            -
                                                                                                              • EditSession.setScrollTop(Number scrollTop)

                                                                                                              This function sets the scroll top value. It also emits the 'changeScrollTop' event.

                                                                                                              -

                                                                                                              This function sets the scroll top value. It also emits the 'changeScrollTop' event.

                                                                                                              -

                                                                                                              Arguments

                                                                                                              scrollTopNumber

                                                                                                              Required. The new scroll top value

                                                                                                              -
                                                                                                                • EditSession.setTabSize(Number tabSize)

                                                                                                                Set the number of spaces that define a soft tab; for example, passing in 4 transforms the soft tabs to be equivalent to four spaces. This function also emits the changeTabSize event.

                                                                                                                -

                                                                                                                Set the number of spaces that define a soft tab; for example, passing in 4 transforms the soft tabs to be equivalent to four spaces. This function also emits the changeTabSize event.

                                                                                                                -

                                                                                                                Arguments

                                                                                                                tabSizeNumber

                                                                                                                Required. The new tab size

                                                                                                                -

                                                                                                                Sets the undo manager.

                                                                                                                -

                                                                                                                Sets the undo manager.

                                                                                                                -

                                                                                                                Arguments

                                                                                                                undoManagerUndoManager

                                                                                                                Required. The new undo manager

                                                                                                                -
                                                                                                                  • EditSession.setUndoSelect(Boolean enable)

                                                                                                                  ENables or disables highlighting of the range where an undo occured.

                                                                                                                  -

                                                                                                                  ENables or disables highlighting of the range where an undo occured.

                                                                                                                  -

                                                                                                                  Arguments

                                                                                                                  enableBoolean

                                                                                                                  Required. If true, selects the range of the reinserted change

                                                                                                                  -
                                                                                                                    • EditSession.setUseSoftTabs(Boolean useSoftTabs)

                                                                                                                    Pass true to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character ('\t').

                                                                                                                    -

                                                                                                                    Pass true to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character ('\t').

                                                                                                                    -

                                                                                                                    Arguments

                                                                                                                    useSoftTabsBoolean

                                                                                                                    Required. Value indicating whether or not to use soft tabs

                                                                                                                    -
                                                                                                                      • EditSession.setUseWorker(Boolean useWorker)

                                                                                                                      Identifies if you want to use a worker for the EditSession.

                                                                                                                      -

                                                                                                                      Identifies if you want to use a worker for the EditSession.

                                                                                                                      -

                                                                                                                      Arguments

                                                                                                                      useWorkerBoolean

                                                                                                                      Required. Set to true to use a worker

                                                                                                                      -
                                                                                                                        • EditSession.setUseWrapMode(Boolean useWrapMode)

                                                                                                                        Sets whether or not line wrapping is enabled. If useWrapMode is different than the current value, the 'changeWrapMode' event is emitted.

                                                                                                                        -

                                                                                                                        Sets whether or not line wrapping is enabled. If useWrapMode is different than the current value, the 'changeWrapMode' event is emitted.

                                                                                                                        -

                                                                                                                        Arguments

                                                                                                                        useWrapModeBoolean

                                                                                                                        Required. Enable (or disable) wrap mode

                                                                                                                        -
                                                                                                                          • EditSession.setValue(String text)

                                                                                                                          Sets the session text.

                                                                                                                          -

                                                                                                                          Sets the session text.

                                                                                                                          -

                                                                                                                          Arguments

                                                                                                                          textString

                                                                                                                          Required. The new text to place

                                                                                                                          -

                                                                                                                          Sets the boundaries of wrap. Either value can be null to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for min or max are different, this method also emits the 'changeWrapMode' event.

                                                                                                                          -

                                                                                                                          Sets the boundaries of wrap. Either value can be null to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for min or max are different, this method also emits the 'changeWrapMode' event.

                                                                                                                          -

                                                                                                                          Arguments

                                                                                                                          minNumber

                                                                                                                          Required. The minimum wrap value (the left side wrap)

                                                                                                                          -
                                                                                                                          maxNumber

                                                                                                                          Required. The maximum wrap value (the right side wrap)

                                                                                                                          -
                                                                                                                            • EditSession.stopWorker()
                                                                                                                            • Internal
                                                                                                                            • EditSession.toggleOverwrite()

                                                                                                                            Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                            -

                                                                                                                            Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                            -

                                                                                                                            Reverts previous changes to your document.

                                                                                                                            -

                                                                                                                            Reverts previous changes to your document.

                                                                                                                            -

                                                                                                                            Arguments

                                                                                                                            deltasArray

                                                                                                                            Required. An array of previous changes

                                                                                                                            -
                                                                                                                            dontSelectBoolean

                                                                                                                            Required. If true, doesn't select the range of where the change occured

                                                                                                                            -
                                                                                                                            \ No newline at end of file diff --git a/api/editor.html b/api/editor.html deleted file mode 100644 index f2493025..00000000 --- a/api/editor.html +++ /dev/null @@ -1,343 +0,0 @@ -

                                                                                                                            Editor [edit]

                                                                                                                            The main entry point into the Ace functionality. The Editor manages the EditSession (which manages Documents), as well as the VirtualRenderer, which draws everything to the screen. Event sessions dealing with the mouse and keyboard are bubbled up from Document to the Editor, which decides what to do with them.

                                                                                                                            -

                                                                                                                            Constructors

                                                                                                                            Creates a new Editor object.

                                                                                                                            -

                                                                                                                            Creates a new Editor object.

                                                                                                                            -

                                                                                                                            Arguments

                                                                                                                            rendererVirtualRenderer

                                                                                                                            Required. Associated VirtualRenderer that draws everything

                                                                                                                            -
                                                                                                                            sessionEditSession

                                                                                                                            Required. The EditSession to refer to

                                                                                                                            -

                                                                                                                            Events

                                                                                                                              • Editor.on("blur", function())

                                                                                                                              Emitted once the editor has been blurred.

                                                                                                                              -

                                                                                                                              Emitted once the editor has been blurred.

                                                                                                                              -
                                                                                                                                • Editor.on("change", function(Object e))

                                                                                                                                Emitted whenever the document is changed.

                                                                                                                                -

                                                                                                                                Emitted whenever the document is changed.

                                                                                                                                -

                                                                                                                                Arguments

                                                                                                                                eObject

                                                                                                                                Required. Contains a single property, data, which has the delta of changes

                                                                                                                                -
                                                                                                                                  • Editor.on("changeSelection", function())

                                                                                                                                  Emitted when the selection changes.

                                                                                                                                  -

                                                                                                                                  Emitted when the selection changes.

                                                                                                                                  -
                                                                                                                                    • Editor.on("changeSession", function(Object e))

                                                                                                                                    Emitted whenever the EditSession changes.

                                                                                                                                    -

                                                                                                                                    Emitted whenever the EditSession changes.

                                                                                                                                    -

                                                                                                                                    Arguments

                                                                                                                                    eObject

                                                                                                                                    Required. An object with two properties, oldSession and session, that represent the old and new EditSessions.

                                                                                                                                    -
                                                                                                                                      • Editor.on("copy", function(String text))

                                                                                                                                      Emitted when text is copied.

                                                                                                                                      -

                                                                                                                                      Emitted when text is copied.

                                                                                                                                      -

                                                                                                                                      Arguments

                                                                                                                                      textString

                                                                                                                                      Required. The copied text

                                                                                                                                      -
                                                                                                                                        • Editor.on("focus", function())

                                                                                                                                        Emitted once the editor comes into focus.

                                                                                                                                        -

                                                                                                                                        Emitted once the editor comes into focus.

                                                                                                                                        -
                                                                                                                                          • Editor.on("paste", function(String text))

                                                                                                                                          Emitted when text is pasted.

                                                                                                                                          -

                                                                                                                                          Emitted when text is pasted.

                                                                                                                                          -

                                                                                                                                          Arguments

                                                                                                                                          textString

                                                                                                                                          Required. The pasted text

                                                                                                                                          -

                                                                                                                                          Methods

                                                                                                                                            • Editor.$getSelectedRows()

                                                                                                                                            Returns an object indicating the currently selected rows. The object looks like this:

                                                                                                                                            -

                                                                                                                                            Returns an object indicating the currently selected rows. The object looks like this:

                                                                                                                                            -

                                                                                                                                            { first: range.start.row, last: range.end.row }

                                                                                                                                            -
                                                                                                                                              • Editor.$getVisibleRowCount()

                                                                                                                                              Returns the number of currently visibile rows.

                                                                                                                                              -

                                                                                                                                              Returns the number of currently visibile rows.

                                                                                                                                              -
                                                                                                                                                • Editor.$highlightBrackets()
                                                                                                                                                • Internal

                                                                                                                                              Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.

                                                                                                                                              -

                                                                                                                                              Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.

                                                                                                                                              -

                                                                                                                                              Arguments

                                                                                                                                              moverFunction

                                                                                                                                              Required. A method to call on each selected row

                                                                                                                                              -
                                                                                                                                                • Editor.$updateHighlightActiveLine()
                                                                                                                                                • Internal
                                                                                                                                                • Editor.addSelectionMarker(Range orientedRange)

                                                                                                                                                Adds the selection and cursor.

                                                                                                                                                -

                                                                                                                                                Adds the selection and cursor.

                                                                                                                                                -

                                                                                                                                                Arguments

                                                                                                                                                orientedRangeRange

                                                                                                                                                Required. A range containing a cursor

                                                                                                                                                -
                                                                                                                                                  • Editor.alignCursors()

                                                                                                                                                  aligns cursors or selected text

                                                                                                                                                  -

                                                                                                                                                  aligns cursors or selected text

                                                                                                                                                  -
                                                                                                                                                    • Editor.blockOutdent()
                                                                                                                                                    • Related to:

                                                                                                                                                  Outdents the current line.

                                                                                                                                                  -

                                                                                                                                                  Outdents the current line.

                                                                                                                                                  -
                                                                                                                                                    • Editor.blur()

                                                                                                                                                    Blurs the current textInput.

                                                                                                                                                    -

                                                                                                                                                    Blurs the current textInput.

                                                                                                                                                    -
                                                                                                                                                      • Editor.centerSelection()

                                                                                                                                                      Attempts to center the current selection on the screen.

                                                                                                                                                      -

                                                                                                                                                      Attempts to center the current selection on the screen.

                                                                                                                                                      -
                                                                                                                                                        • Editor.clearSelection()
                                                                                                                                                        • Related to:

                                                                                                                                                      Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                      -

                                                                                                                                                      Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                      -
                                                                                                                                                        • Related to:

                                                                                                                                                      Copies all the selected lines down one row.

                                                                                                                                                      -

                                                                                                                                                      Copies all the selected lines down one row.

                                                                                                                                                      -

                                                                                                                                                      Returns

                                                                                                                                                      Number

                                                                                                                                                      On success, returns the number of new rows added; in other words, lastRow - firstRow + 1.

                                                                                                                                                      -
                                                                                                                                                        • Related to:

                                                                                                                                                      Copies all the selected lines up one row.

                                                                                                                                                      -

                                                                                                                                                      Copies all the selected lines up one row.

                                                                                                                                                      -

                                                                                                                                                      Returns

                                                                                                                                                      Number

                                                                                                                                                      On success, returns 0.

                                                                                                                                                      -
                                                                                                                                                        • Editor.destroy()

                                                                                                                                                        Cleans up the entire editor.

                                                                                                                                                        -

                                                                                                                                                        Cleans up the entire editor.

                                                                                                                                                        -
                                                                                                                                                          • Editor.exitMultiSelectMode()
                                                                                                                                                            • Void

                                                                                                                                                          Removes all the selections except the last added one.

                                                                                                                                                          -

                                                                                                                                                          Removes all the selections except the last added one.

                                                                                                                                                          -

                                                                                                                                                          Attempts to find needle within the document. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Attempts to find needle within the document. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Arguments

                                                                                                                                                          needleString

                                                                                                                                                          Required. The text to search for (optional)

                                                                                                                                                          -
                                                                                                                                                          optionsObject

                                                                                                                                                          Required. An object defining various search properties

                                                                                                                                                          -
                                                                                                                                                          animateBoolean

                                                                                                                                                          Required. If true animate scrolling

                                                                                                                                                          -

                                                                                                                                                          Finds and selects all the occurences of needle.

                                                                                                                                                          -

                                                                                                                                                          Finds and selects all the occurences of needle.

                                                                                                                                                          -

                                                                                                                                                          Arguments

                                                                                                                                                          needleString

                                                                                                                                                          Required. The text to find

                                                                                                                                                          -
                                                                                                                                                          optionsObject

                                                                                                                                                          Required. The search options

                                                                                                                                                          -
                                                                                                                                                          additiveBoolean

                                                                                                                                                          Required. keeps

                                                                                                                                                          -

                                                                                                                                                          Performs another search for needle in the document. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Performs another search for needle in the document. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Arguments

                                                                                                                                                          optionsObject

                                                                                                                                                          Required. search options

                                                                                                                                                          -
                                                                                                                                                          animateBoolean

                                                                                                                                                          Required. If true animate scrolling

                                                                                                                                                          -

                                                                                                                                                          Performs a search for needle backwards. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Performs a search for needle backwards. For more information on options, see Search.

                                                                                                                                                          -

                                                                                                                                                          Arguments

                                                                                                                                                          optionsObject

                                                                                                                                                          Required. search options

                                                                                                                                                          -
                                                                                                                                                          animateBoolean

                                                                                                                                                          Required. If true animate scrolling

                                                                                                                                                          -
                                                                                                                                                            • Editor.focus()

                                                                                                                                                            Brings the current textInput into focus.

                                                                                                                                                            -

                                                                                                                                                            Brings the current textInput into focus.

                                                                                                                                                            -

                                                                                                                                                            Executes a command for each selection range.

                                                                                                                                                            -

                                                                                                                                                            Executes a command for each selection range.

                                                                                                                                                            -

                                                                                                                                                            Arguments

                                                                                                                                                            cmdString

                                                                                                                                                            Required. The command to execute

                                                                                                                                                            -
                                                                                                                                                            argsString

                                                                                                                                                            Required. Any arguments for the command

                                                                                                                                                            -
                                                                                                                                                              • Editor.getBehavioursEnabled()

                                                                                                                                                              Returns true if the behaviors are currently enabled. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                              -

                                                                                                                                                              Returns true if the behaviors are currently enabled. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                              -

                                                                                                                                                              Returns the string of text currently highlighted.

                                                                                                                                                              -

                                                                                                                                                              Returns the string of text currently highlighted.

                                                                                                                                                              -
                                                                                                                                                                • Editor.getCursorPosition()
                                                                                                                                                                • Related to:

                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                              -

                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                              -

                                                                                                                                                              Returns

                                                                                                                                                              Object

                                                                                                                                                              This returns an object that looks something like this:

                                                                                                                                                              -
                                                                                                                                                                -
                                                                                                                                                              • { row: currRow, column: currCol }
                                                                                                                                                              • -
                                                                                                                                                              -
                                                                                                                                                                • Editor.getCursorPositionScreen()
                                                                                                                                                                • Related to:

                                                                                                                                                              Returns the screen position of the cursor.

                                                                                                                                                              -

                                                                                                                                                              Returns the screen position of the cursor.

                                                                                                                                                              -

                                                                                                                                                              Returns the current mouse drag delay.

                                                                                                                                                              -

                                                                                                                                                              Returns the current mouse drag delay.

                                                                                                                                                              -
                                                                                                                                                                • Editor.getFirstVisibleRow()
                                                                                                                                                                • Related to:

                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                              -

                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                              -
                                                                                                                                                                • Editor.getHighlightActiveLine()

                                                                                                                                                                Returns true if current lines are always highlighted.

                                                                                                                                                                -

                                                                                                                                                                Returns true if current lines are always highlighted.

                                                                                                                                                                -
                                                                                                                                                                  • Editor.getHighlightSelectedWord()

                                                                                                                                                                  Returns true if currently highlighted words are to be highlighted.

                                                                                                                                                                  -

                                                                                                                                                                  Returns true if currently highlighted words are to be highlighted.

                                                                                                                                                                  -
                                                                                                                                                                    • Editor.getKeyboardHandler()
                                                                                                                                                                    • Related to:

                                                                                                                                                                  Returns the keyboard handler.

                                                                                                                                                                  -

                                                                                                                                                                  Returns the keyboard handler.

                                                                                                                                                                  -
                                                                                                                                                                    • Editor.getLastSearchOptions()
                                                                                                                                                                    • Related to:

                                                                                                                                                                  Returns an object containing all the search options. For more information on options, see Search.

                                                                                                                                                                  -

                                                                                                                                                                  Returns an object containing all the search options. For more information on options, see Search.

                                                                                                                                                                  -
                                                                                                                                                                    • Editor.getLastVisibleRow()
                                                                                                                                                                    • Related to:

                                                                                                                                                                  Returns the index of the last visible row.

                                                                                                                                                                  -

                                                                                                                                                                  Returns the index of the last visible row.

                                                                                                                                                                  -
                                                                                                                                                                    • Related to:

                                                                                                                                                                  Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                  -

                                                                                                                                                                  Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                  -
                                                                                                                                                                    • Editor.getPrintMarginColumn()

                                                                                                                                                                    Returns the column number of where the print margin is.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the column number of where the print margin is.

                                                                                                                                                                    -

                                                                                                                                                                    Returns true if the editor is set to read-only mode.

                                                                                                                                                                    -

                                                                                                                                                                    Returns true if the editor is set to read-only mode.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the value indicating how fast the mouse scroll speed is.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the value indicating how fast the mouse scroll speed is.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the currently highlighted selection.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the currently highlighted selection.

                                                                                                                                                                    -
                                                                                                                                                                      • Editor.getSelectionRange()
                                                                                                                                                                      • Related to:

                                                                                                                                                                    Returns the Range for the selected text.

                                                                                                                                                                    -

                                                                                                                                                                    Returns the Range for the selected text.

                                                                                                                                                                    -
                                                                                                                                                                      • Editor.getSelectionStyle()

                                                                                                                                                                      Returns the current selection style.

                                                                                                                                                                      -

                                                                                                                                                                      Returns the current selection style.

                                                                                                                                                                      -

                                                                                                                                                                      Returns the current session being used.

                                                                                                                                                                      -

                                                                                                                                                                      Returns the current session being used.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if the fold widgets are shown.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if the fold widgets are shown.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if invisible characters are being shown.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if invisible characters are being shown.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if the print margin is being shown.

                                                                                                                                                                      -

                                                                                                                                                                      Returns true if the print margin is being shown.

                                                                                                                                                                      -
                                                                                                                                                                        • Related to:

                                                                                                                                                                      Returns the path of the current theme.

                                                                                                                                                                      -

                                                                                                                                                                      Returns the path of the current theme.

                                                                                                                                                                      -
                                                                                                                                                                        • Related to:

                                                                                                                                                                      Returns the current session's content.

                                                                                                                                                                      -

                                                                                                                                                                      Returns the current session's content.

                                                                                                                                                                      -

                                                                                                                                                                      Moves the cursor to the specified line number, and also into the indiciated column.

                                                                                                                                                                      -

                                                                                                                                                                      Moves the cursor to the specified line number, and also into the indiciated column.

                                                                                                                                                                      -

                                                                                                                                                                      Arguments

                                                                                                                                                                      lineNumberNumber

                                                                                                                                                                      Required. The line number to go to

                                                                                                                                                                      -
                                                                                                                                                                      columnNumber

                                                                                                                                                                      Required. A column number to go to

                                                                                                                                                                      -
                                                                                                                                                                      animateBoolean

                                                                                                                                                                      Required. If true animates scolling

                                                                                                                                                                      -
                                                                                                                                                                        • Editor.gotoPageDown()

                                                                                                                                                                        Shifts the document to wherever "page down" is, as well as moving the cursor position.

                                                                                                                                                                        -

                                                                                                                                                                        Shifts the document to wherever "page down" is, as well as moving the cursor position.

                                                                                                                                                                        -
                                                                                                                                                                          • Editor.gotoPageUp()

                                                                                                                                                                          Shifts the document to wherever "page up" is, as well as moving the cursor position.

                                                                                                                                                                          -

                                                                                                                                                                          Shifts the document to wherever "page up" is, as well as moving the cursor position.

                                                                                                                                                                          -
                                                                                                                                                                            • Editor.indent()
                                                                                                                                                                            • Related to:

                                                                                                                                                                          Indents the current line.

                                                                                                                                                                          -

                                                                                                                                                                          Indents the current line.

                                                                                                                                                                          -

                                                                                                                                                                          Inserts text into wherever the cursor is pointing.

                                                                                                                                                                          -

                                                                                                                                                                          Inserts text into wherever the cursor is pointing.

                                                                                                                                                                          -

                                                                                                                                                                          Arguments

                                                                                                                                                                          textString

                                                                                                                                                                          Required. The new text to add

                                                                                                                                                                          -

                                                                                                                                                                          Returns true if the current textInput is in focus.

                                                                                                                                                                          -

                                                                                                                                                                          Returns true if the current textInput is in focus.

                                                                                                                                                                          -

                                                                                                                                                                          Indicates if the entire row is currently visible on the screen.

                                                                                                                                                                          -

                                                                                                                                                                          Indicates if the entire row is currently visible on the screen.

                                                                                                                                                                          -

                                                                                                                                                                          Arguments

                                                                                                                                                                          rowNumber

                                                                                                                                                                          Required. The row to check

                                                                                                                                                                          -

                                                                                                                                                                          Indicates if the row is currently visible on the screen.

                                                                                                                                                                          -

                                                                                                                                                                          Indicates if the row is currently visible on the screen.

                                                                                                                                                                          -

                                                                                                                                                                          Arguments

                                                                                                                                                                          rowNumber

                                                                                                                                                                          Required. The row to check

                                                                                                                                                                          -
                                                                                                                                                                            • Editor.jumpToMatching()

                                                                                                                                                                            Moves the cursor's row and column to the next matching bracket.

                                                                                                                                                                            -

                                                                                                                                                                            Moves the cursor's row and column to the next matching bracket.

                                                                                                                                                                            -

                                                                                                                                                                            Moves the cursor to the specified row and column. Note that this does not de-select the current selection.

                                                                                                                                                                            -

                                                                                                                                                                            Moves the cursor to the specified row and column. Note that this does not de-select the current selection.

                                                                                                                                                                            -

                                                                                                                                                                            Arguments

                                                                                                                                                                            rowNumber

                                                                                                                                                                            Required. The new row number

                                                                                                                                                                            -
                                                                                                                                                                            columnNumber

                                                                                                                                                                            Required. The new column number

                                                                                                                                                                            -
                                                                                                                                                                              • Editor.moveCursorToPosition(Object pos)
                                                                                                                                                                              • Related to:

                                                                                                                                                                            Moves the cursor to the position indicated by pos.row and pos.column.

                                                                                                                                                                            -

                                                                                                                                                                            Moves the cursor to the position indicated by pos.row and pos.column.

                                                                                                                                                                            -

                                                                                                                                                                            Arguments

                                                                                                                                                                            posObject

                                                                                                                                                                            Required. An object with two properties, row and column

                                                                                                                                                                            -
                                                                                                                                                                              • Related to:

                                                                                                                                                                            Shifts all the selected lines down one row.

                                                                                                                                                                            -

                                                                                                                                                                            Shifts all the selected lines down one row.

                                                                                                                                                                            -

                                                                                                                                                                            Returns

                                                                                                                                                                            Number

                                                                                                                                                                            On success, it returns -1.

                                                                                                                                                                            -
                                                                                                                                                                              • Related to:

                                                                                                                                                                            Shifts all the selected lines up one row.

                                                                                                                                                                            -

                                                                                                                                                                            Shifts all the selected lines up one row.

                                                                                                                                                                            -

                                                                                                                                                                            Returns

                                                                                                                                                                            Number

                                                                                                                                                                            On success, it returns -1.

                                                                                                                                                                            -

                                                                                                                                                                            Moves a range of text from the given range to the given position. toPosition is an object that looks like this:

                                                                                                                                                                            -

                                                                                                                                                                            Moves a range of text from the given range to the given position. toPosition is an object that looks like this:

                                                                                                                                                                            -

                                                                                                                                                                            { row: newRowLocation, column: newColumnLocation }

                                                                                                                                                                            -

                                                                                                                                                                            Arguments

                                                                                                                                                                            fromRangeRange

                                                                                                                                                                            Required. The range of text you want moved within the document

                                                                                                                                                                            -
                                                                                                                                                                            toPositionObject

                                                                                                                                                                            Required. The location (row and column) where you want to move the text to

                                                                                                                                                                            -

                                                                                                                                                                            Returns

                                                                                                                                                                            Range

                                                                                                                                                                            The new range where the text was moved to.

                                                                                                                                                                            -
                                                                                                                                                                              • Editor.navigateDown(Number times)

                                                                                                                                                                              Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                              -

                                                                                                                                                                              Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                              -

                                                                                                                                                                              Arguments

                                                                                                                                                                              timesNumber

                                                                                                                                                                              Required. The number of times to change navigation

                                                                                                                                                                              -
                                                                                                                                                                                • Editor.navigateFileEnd()

                                                                                                                                                                                Moves the cursor to the end of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                -

                                                                                                                                                                                Moves the cursor to the end of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                -
                                                                                                                                                                                  • Editor.navigateFileStart()

                                                                                                                                                                                  Moves the cursor to the start of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                  -

                                                                                                                                                                                  Moves the cursor to the start of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                  -
                                                                                                                                                                                    • Editor.navigateLeft(Number times)

                                                                                                                                                                                    Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                    -

                                                                                                                                                                                    Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                    -

                                                                                                                                                                                    Arguments

                                                                                                                                                                                    timesNumber

                                                                                                                                                                                    Required. The number of times to change navigation

                                                                                                                                                                                    -
                                                                                                                                                                                      • Editor.navigateLineEnd()

                                                                                                                                                                                      Moves the cursor to the end of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                      -

                                                                                                                                                                                      Moves the cursor to the end of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                      -
                                                                                                                                                                                        • Editor.navigateLineStart()

                                                                                                                                                                                        Moves the cursor to the start of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                        -

                                                                                                                                                                                        Moves the cursor to the start of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                        -
                                                                                                                                                                                          • Editor.navigateRight(Number times)

                                                                                                                                                                                          Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                          -

                                                                                                                                                                                          Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                          -

                                                                                                                                                                                          Arguments

                                                                                                                                                                                          timesNumber

                                                                                                                                                                                          Required. The number of times to change navigation

                                                                                                                                                                                          -

                                                                                                                                                                                          Moves the cursor to the specified row and column. Note that this does de-select the current selection.

                                                                                                                                                                                          -

                                                                                                                                                                                          Moves the cursor to the specified row and column. Note that this does de-select the current selection.

                                                                                                                                                                                          -

                                                                                                                                                                                          Arguments

                                                                                                                                                                                          rowNumber

                                                                                                                                                                                          Required. The new row number

                                                                                                                                                                                          -
                                                                                                                                                                                          columnNumber

                                                                                                                                                                                          Required. The new column number

                                                                                                                                                                                          -
                                                                                                                                                                                            • Editor.navigateUp(Number times)

                                                                                                                                                                                            Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                            -

                                                                                                                                                                                            Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                            -

                                                                                                                                                                                            Arguments

                                                                                                                                                                                            timesNumber

                                                                                                                                                                                            Required. The number of times to change navigation

                                                                                                                                                                                            -
                                                                                                                                                                                              • Editor.navigateWordLeft()

                                                                                                                                                                                              Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                              -

                                                                                                                                                                                              Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                              -
                                                                                                                                                                                                • Editor.navigateWordRight()

                                                                                                                                                                                                Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                -

                                                                                                                                                                                                Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                -
                                                                                                                                                                                                  • Editor.onCopy()

                                                                                                                                                                                                  Called whenever a text "copy" happens.

                                                                                                                                                                                                  -

                                                                                                                                                                                                  Called whenever a text "copy" happens.

                                                                                                                                                                                                  -
                                                                                                                                                                                                    • Editor.onCut()

                                                                                                                                                                                                    called whenever a text "cut" happens.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    called whenever a text "cut" happens.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Called whenever a text "paste" happens.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Called whenever a text "paste" happens.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                    textString

                                                                                                                                                                                                    Required. The pasted text

                                                                                                                                                                                                    -
                                                                                                                                                                                                      • Editor.redo()
                                                                                                                                                                                                      • Related to:

                                                                                                                                                                                                    Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Removes words of text from the editor. A "word" is defined as a string of characters bookended by whitespace.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Removes words of text from the editor. A "word" is defined as a string of characters bookended by whitespace.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                    dirString

                                                                                                                                                                                                    Required. The direction of the deletion to occur, either "left" or "right"

                                                                                                                                                                                                    -
                                                                                                                                                                                                      • Editor.removeLines()
                                                                                                                                                                                                      • Related to:

                                                                                                                                                                                                    Removes all the lines in the current selection

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Removes all the lines in the current selection

                                                                                                                                                                                                    -
                                                                                                                                                                                                      • Editor.removeSelectionMarker(Range range)

                                                                                                                                                                                                      Removes the selection marker.

                                                                                                                                                                                                      -

                                                                                                                                                                                                      Removes the selection marker.

                                                                                                                                                                                                      -

                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                      rangeRange

                                                                                                                                                                                                      Required. The selection range added with addSelectionMarker().

                                                                                                                                                                                                      -
                                                                                                                                                                                                        • Editor.removeToLineEnd()

                                                                                                                                                                                                        Removes all the words to the right of the current selection, until the end of the line.

                                                                                                                                                                                                        -

                                                                                                                                                                                                        Removes all the words to the right of the current selection, until the end of the line.

                                                                                                                                                                                                        -
                                                                                                                                                                                                          • Editor.removeToLineStart()

                                                                                                                                                                                                          Removes all the words to the left of the current selection, until the start of the line.

                                                                                                                                                                                                          -

                                                                                                                                                                                                          Removes all the words to the left of the current selection, until the start of the line.

                                                                                                                                                                                                          -
                                                                                                                                                                                                            • Editor.removeWordLeft()

                                                                                                                                                                                                            Removes the word directly to the left of the current selection.

                                                                                                                                                                                                            -

                                                                                                                                                                                                            Removes the word directly to the left of the current selection.

                                                                                                                                                                                                            -
                                                                                                                                                                                                              • Editor.removeWordRight()

                                                                                                                                                                                                              Removes the word directly to the right of the current selection.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Removes the word directly to the right of the current selection.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Replaces the first occurance of options.needle with the value in replacement.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Replaces the first occurance of options.needle with the value in replacement.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                              replacementString

                                                                                                                                                                                                              Required. The text to replace with

                                                                                                                                                                                                              -
                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                              Required. The Search options to use

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Replaces all occurances of options.needle with the value in replacement.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Replaces all occurances of options.needle with the value in replacement.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                              replacementString

                                                                                                                                                                                                              Required. The text to replace with

                                                                                                                                                                                                              -
                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                              Required. The Search options to use

                                                                                                                                                                                                              -
                                                                                                                                                                                                                • Related to:

                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                              -

                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                              forceBoolean

                                                                                                                                                                                                              Required. If true, recomputes the size, even if the height and width haven't changed

                                                                                                                                                                                                              -
                                                                                                                                                                                                                • Editor.scrollPageDown()

                                                                                                                                                                                                                Scrolls the document to wherever "page down" is, without changing the cursor position.

                                                                                                                                                                                                                -

                                                                                                                                                                                                                Scrolls the document to wherever "page down" is, without changing the cursor position.

                                                                                                                                                                                                                -
                                                                                                                                                                                                                  • Editor.scrollPageUp()

                                                                                                                                                                                                                  Scrolls the document to wherever "page up" is, without changing the cursor position.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Scrolls the document to wherever "page up" is, without changing the cursor position.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  TODO scrolls a to line, if center == true, puts line in middle of screen or attempts to)

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  TODO scrolls a to line, if center == true, puts line in middle of screen or attempts to)

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                  lineNumber

                                                                                                                                                                                                                  Required. The line to scroll to

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  centerBoolean

                                                                                                                                                                                                                  Required. If true

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  animateBoolean

                                                                                                                                                                                                                  Required. If true animates scrolling

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  callbackFunction

                                                                                                                                                                                                                  Required. Function to be called when the animation has finished

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    • Editor.scrollToRow(Number row)
                                                                                                                                                                                                                    • Related to:

                                                                                                                                                                                                                  Moves the editor to the specified row.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Moves the editor to the specified row.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                  rowNumber

                                                                                                                                                                                                                  Required. The row to move to

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    • Editor.selectAll()
                                                                                                                                                                                                                    • Related to:

                                                                                                                                                                                                                  Selects all the text in editor.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Selects all the text in editor.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Finds the next occurence of text in an active selection and adds it to the selections.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Finds the next occurence of text in an active selection and adds it to the selections.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                  dirNumber

                                                                                                                                                                                                                  Required. The direction of lines to select: -1 for up, 1 for down

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  skipBoolean

                                                                                                                                                                                                                  Required. If true, removes the active selection range

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Adds a cursor above or below the active cursor.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Adds a cursor above or below the active cursor.

                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                  dirNumber

                                                                                                                                                                                                                  Required. The direction of lines to select: -1 for up, 1 for down

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  skipBoolean

                                                                                                                                                                                                                  Required. If true, removes the active selection range

                                                                                                                                                                                                                  -
                                                                                                                                                                                                                    • Editor.selectPageDown()

                                                                                                                                                                                                                    Selects the text from the current position of the document until where a "page down" finishes.

                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    Selects the text from the current position of the document until where a "page down" finishes.

                                                                                                                                                                                                                    -
                                                                                                                                                                                                                      • Editor.selectPageUp()

                                                                                                                                                                                                                      Selects the text from the current position of the document until where a "page up" finishes.

                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      Selects the text from the current position of the document until where a "page up" finishes.

                                                                                                                                                                                                                      -
                                                                                                                                                                                                                        • Editor.setBehavioursEnabled(Boolean enabled)

                                                                                                                                                                                                                        Specifies whether to use behaviors or not. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        Specifies whether to use behaviors or not. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                        enabledBoolean

                                                                                                                                                                                                                        Required. Enables or disables behaviors

                                                                                                                                                                                                                        -
                                                                                                                                                                                                                          • Editor.setDragDelay(Number dragDelay)

                                                                                                                                                                                                                          Sets the delay (in milliseconds) of the mouse drag.

                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          Sets the delay (in milliseconds) of the mouse drag.

                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                          dragDelayNumber

                                                                                                                                                                                                                          Required. A value indicating the new delay

                                                                                                                                                                                                                          -
                                                                                                                                                                                                                            • Editor.setFontSize(Number size)

                                                                                                                                                                                                                            Set a new font size (in pixels) for the editor text.

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            Set a new font size (in pixels) for the editor text.

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                            sizeNumber

                                                                                                                                                                                                                            Required. A font size

                                                                                                                                                                                                                            -
                                                                                                                                                                                                                              • Editor.setHighlightActiveLine(Boolean shouldHighlight)

                                                                                                                                                                                                                              Determines whether or not the current line should be highlighted.

                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              Determines whether or not the current line should be highlighted.

                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                              shouldHighlightBoolean

                                                                                                                                                                                                                              Required. Set to true to highlight the current line

                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                • Editor.setHighlightSelectedWord(Boolean shouldHighlight)

                                                                                                                                                                                                                                Determines if the currently selected word should be highlighted.

                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                Determines if the currently selected word should be highlighted.

                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                shouldHighlightBoolean

                                                                                                                                                                                                                                Required. Set to true to highlight the currently selected word

                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                  • Editor.setKeyboardHandler(keyboardHandler)

                                                                                                                                                                                                                                  Sets a new keyboard handler.

                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  Sets a new keyboard handler.

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                    • Editor.setOverwrite(Boolean overwrite)
                                                                                                                                                                                                                                    • Related to:

                                                                                                                                                                                                                                  Pass in true to enable overwrites in your session, or false to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  Pass in true to enable overwrites in your session, or false to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                                  overwriteBoolean

                                                                                                                                                                                                                                  Required. Defines wheter or not to set overwrites

                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                    • Editor.setPrintMarginColumn(Number showPrintMargin)

                                                                                                                                                                                                                                    Sets the column defining where the print margin should be.

                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    Sets the column defining where the print margin should be.

                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                    showPrintMarginNumber

                                                                                                                                                                                                                                    Required. Specifies the new print margin

                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                      • Editor.setReadOnly(Boolean readOnly)

                                                                                                                                                                                                                                      If readOnly is true, then the editor is set to read-only mode, and none of the content can change.

                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      If readOnly is true, then the editor is set to read-only mode, and none of the content can change.

                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                      readOnlyBoolean

                                                                                                                                                                                                                                      Required. Specifies whether the editor can be modified or not

                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                        • Editor.setScrollSpeed(Number speed)

                                                                                                                                                                                                                                        Sets how fast the mouse scrolling should do.

                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        Sets how fast the mouse scrolling should do.

                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                        speedNumber

                                                                                                                                                                                                                                        Required. A value indicating the new speed

                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                          • Editor.setSelectionStyle(String style)

                                                                                                                                                                                                                                          Indicates how selections should occur. By default, selections are set to "line". This function also emits the 'changeSelectionStyle' event.

                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Indicates how selections should occur. By default, selections are set to "line". This function also emits the 'changeSelectionStyle' event.

                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                          styleString

                                                                                                                                                                                                                                          Required. The new selection style

                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Sets a new editsession to use. This method also emits the 'changeSession' event.

                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Sets a new editsession to use. This method also emits the 'changeSession' event.

                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                          sessionEditSession

                                                                                                                                                                                                                                          Required. The new session to use

                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                            • Editor.setShowFoldWidgets(Boolean show)

                                                                                                                                                                                                                                            Indicates whether the fold widgets are shown or not.

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            Indicates whether the fold widgets are shown or not.

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                            showBoolean

                                                                                                                                                                                                                                            Required. Specifies whether the fold widgets are shown

                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                              • Editor.setShowInvisibles(Boolean showInvisibles)

                                                                                                                                                                                                                                              If showInvisibiles is set to true, invisible characters—like spaces or new lines—are show in the editor.

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              If showInvisibiles is set to true, invisible characters—like spaces or new lines—are show in the editor.

                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                              showInvisiblesBoolean

                                                                                                                                                                                                                                              Required. Specifies whether or not to show invisible characters

                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                • Editor.setShowPrintMargin(Boolean showPrintMargin)

                                                                                                                                                                                                                                                If showPrintMargin is set to true, the print margin is shown in the editor.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                If showPrintMargin is set to true, the print margin is shown in the editor.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                showPrintMarginBoolean

                                                                                                                                                                                                                                                Required. Specifies whether or not to show the print margin

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                styleString

                                                                                                                                                                                                                                                Required. A class name

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                themeString

                                                                                                                                                                                                                                                Required. The path to a theme

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Sets the current document to val.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Sets the current document to val.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                valString

                                                                                                                                                                                                                                                Required. The new value to set for the document

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                cursorPosNumber

                                                                                                                                                                                                                                                Required. Where to set the new value. undefined or 0 is selectAll, -1 is at the document start, and 1 is at the end

                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                  • Editor.splitLine()

                                                                                                                                                                                                                                                  Splits the line at the current selection (by inserting an '\n').

                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  Splits the line at the current selection (by inserting an '\n').

                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                    • Editor.toggleCommentLines()

                                                                                                                                                                                                                                                    Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).

                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                      • Editor.toggleOverwrite()
                                                                                                                                                                                                                                                      • Related to:

                                                                                                                                                                                                                                                    Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                      • Editor.toLowerCase()

                                                                                                                                                                                                                                                      Converts the current selection entirely into lowercase.

                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      Converts the current selection entirely into lowercase.

                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                        • Editor.toUpperCase()

                                                                                                                                                                                                                                                        Converts the current selection entirely into uppercase.

                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        Converts the current selection entirely into uppercase.

                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                          • Editor.transposeLetters()

                                                                                                                                                                                                                                                          Transposes current line.

                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          Transposes current line.

                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                            • Editor.transposeSelections(Number dir)

                                                                                                                                                                                                                                                            Transposes the selected ranges.

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            Transposes the selected ranges.

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                            dirNumber

                                                                                                                                                                                                                                                            Required. The direction to rotate selections

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              • Editor.undo()
                                                                                                                                                                                                                                                              • Related to:

                                                                                                                                                                                                                                                            Perform an undo operation on the document, reverting the last change. Returns the range of the undo.

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            Perform an undo operation on the document, reverting the last change. Returns the range of the undo.

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              • Editor.unsetStyle(style)
                                                                                                                                                                                                                                                              • Related to:

                                                                                                                                                                                                                                                            Removes the class style from the editor.

                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                            Removes the class style from the editor.

                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                              • Editor.updateSelectionMarkers()

                                                                                                                                                                                                                                                              Updates the cursor and marker layers.

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Updates the cursor and marker layers.

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/index.html b/api/index.html deleted file mode 100644 index a4f1f307..00000000 --- a/api/index.html +++ /dev/null @@ -1,4 +0,0 @@ -

                                                                                                                                                                                                                                                              Ace API Reference

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Welcome to the Ace API Reference Guide. Ace is a standalone code editor written in JavaScript that you can embed onto any website. We're used in a bunch of places already, like GitHub, Google, and Facebook.

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              On the left, you'll find a list of all of our currently documented classes. There are plenty more to do, but these represent the "core" set. For more information on how to work with Ace, check out the main Ace website.

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/placeholder.html b/api/placeholder.html deleted file mode 100644 index 98aa0b55..00000000 --- a/api/placeholder.html +++ /dev/null @@ -1,24 +0,0 @@ -

                                                                                                                                                                                                                                                              TODO

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                • PlaceHolder.on("onCursorChange", function(e))

                                                                                                                                                                                                                                                                Emitted when the cursor changes.

                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                Emitted when the cursor changes.

                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                  • PlaceHolder.on("onUpdate", function(e))

                                                                                                                                                                                                                                                                  Emitted when the place holder updates.

                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  Emitted when the place holder updates.

                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                    • PlaceHolder.cancel()

                                                                                                                                                                                                                                                                    TODO

                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                    TODO

                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                      • PlaceHolder.detach()

                                                                                                                                                                                                                                                                      TODO

                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      TODO

                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                        • PlaceHolder.hideOtherMarkers()

                                                                                                                                                                                                                                                                        Hides all over markers in the EditSession that are not the currently selected one.

                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                        Hides all over markers in the EditSession that are not the currently selected one.

                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                          • PlaceHolder.setup()

                                                                                                                                                                                                                                                                          TODO

                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          TODO

                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                            • PlaceHolder.showOtherMarkers()

                                                                                                                                                                                                                                                                            TODO

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            TODO

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            \ No newline at end of file diff --git a/api/range.html b/api/range.html deleted file mode 100644 index 19f69645..00000000 --- a/api/range.html +++ /dev/null @@ -1,297 +0,0 @@ -

                                                                                                                                                                                                                                                                            This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                            Creates a new Range object with the given starting and ending row and column points.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Creates a new Range object with the given starting and ending row and column points.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                            startRowNumber

                                                                                                                                                                                                                                                                            Required. The starting row

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            startColumnNumber

                                                                                                                                                                                                                                                                            Required. The starting column

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            endRowNumber

                                                                                                                                                                                                                                                                            Required. The ending row

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            endColumnNumber

                                                                                                                                                                                                                                                                            Required. The ending column

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                            Returns the part of the current Range that occurs within the boundaries of firstRow and lastRow as a new Range object.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Returns the part of the current Range that occurs within the boundaries of firstRow and lastRow as a new Range object.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                            firstRowNumber

                                                                                                                                                                                                                                                                            Required. The starting row

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            lastRowNumber

                                                                                                                                                                                                                                                                            Required. The ending row

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Returns a duplicate of the calling range.

                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                            Returns a duplicate of the calling range.

                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                              • Range.collapseRows()

                                                                                                                                                                                                                                                                              Returns a range containing the starting and ending rows of the original range, but with a column value of 0.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns a range containing the starting and ending rows of the original range, but with a column value of 0.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 0 if the two points are exactly equal
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1 if p.row is less then the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 1 if p.row is greater than the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the starting row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is greater than or equal to the calling range's starting column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns -1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the ending row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is less than or equal to the calling range's ending column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns 1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 0 if the two points are exactly equal
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1 if p.row is less then the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 1 if p.row is greater than the calling range, or if isEnd is `true.
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the starting row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is greater than or equal to the calling range's starting column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns -1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                *

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the ending row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is less than or equal to the calling range's ending column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns 1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 1 if the ending row of the calling range is equal to row, and the ending column of the calling range is equal to column
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1 if the starting row of the calling range is equal to row, and the starting column of the calling range is equal to column
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • Otherwise, it returns the value after calling compare().

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points of p with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points of p with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              pRange

                                                                                                                                                                                                                                                                              Required. A point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 0 if the two points are exactly equal
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1 if p.row is less then the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 1 if p.row is greater than the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the starting row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is greater than or equal to the calling range's starting column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns -1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                *

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the ending row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is less than or equal to the calling range's ending column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns 1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Compares this range (A) with another range (B).

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Compares this range (A) with another range (B).

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -2: (B) is in front of (A), and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1: (B) begins before (A) but ends inside of (A)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 0: (B) is completely inside of (A) OR (A) is completely inside of (B)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • +1: (B) begins inside of (A) but ends outside of (A)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • +2: (B) is after (A) and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 42: FTW state: (B) ends in (A) but starts outside of (A)
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns

                                                                                                                                                                                                                                                                              Number

                                                                                                                                                                                                                                                                              This method returns one of the following numbers:

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 0 if the two points are exactly equal
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • -1 if p.row is less then the calling range
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • 1 if p.row is greater than the calling range, or if isStart is true.
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the starting row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is greater than or equal to the calling range's starting column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns -1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -

                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              • If the ending row of the calling range is equal to p.row, and:

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • p.column is less than or equal to the calling range's ending column, this returns 0
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                • Otherwise, it returns 1
                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                              • -
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column provided are within the given range. This can better be expressed as returning true if:

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column provided are within the given range. This can better be expressed as returning true if:

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              this.start.row <= row <= this.end.row && - this.start.column <= column <= this.end.column

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row to check for

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column to check for

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the start and end points of range and compares them to the calling range. Returns true if the range is contained within the caller's range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Checks the start and end points of range and compares them to the calling range. Returns true if the range is contained within the caller's range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Changes the row and column points for the calling range for both the starting and ending points. This method returns that range with a new row.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Changes the row and column points for the calling range for both the starting and ending points. This method returns that range with a new row.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A new row to extend to

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A new column to extend to

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Creates and returns a new Range based on the row and column of the given parameters.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Creates and returns a new Range based on the row and column of the given parameters.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              startRange

                                                                                                                                                                                                                                                                              Required. A starting point to use

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              endRange

                                                                                                                                                                                                                                                                              Required. An ending point to use

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's ending points.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's ending points.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's starting points.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's starting points.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if passed in range intersects with the one calling this method.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if passed in range intersects with the one calling this method.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the caller's ending row point is the same as row, and if the caller's ending column is the same as column.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the caller's ending row point is the same as row, and if the caller's ending column is the same as column.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if and only if the starting row and column, and ending tow and column, are equivalent to those given by range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if and only if the starting row and column, and ending tow and column, are equivalent to those given by range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                              Required. A range to check against

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the range spans across multiple lines.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the range spans across multiple lines.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the caller's starting row point is the same as row, and if the caller's starting column is the same as column.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns true if the caller's starting row point is the same as row, and if the caller's starting column is the same as column.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to set

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to set

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                              Required. A row point to set

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                              Required. A column point to set

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Given the current Range, this function converts those starting and ending points into screen positions, and then returns a new Range object.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Given the current Range, this function converts those starting and ending points into screen positions, and then returns a new Range object.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                              Required. The EditSession to retrieve coordinates from

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns a string containing the range's row and column information, given like this:

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Returns a string containing the range's row and column information, given like this:

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              [start.row/start.column] -> [end.row/end.column]

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/renderloop.html b/api/renderloop.html deleted file mode 100644 index 26aa4d16..00000000 --- a/api/renderloop.html +++ /dev/null @@ -1,3 +0,0 @@ -

                                                                                                                                                                                                                                                                              Batches changes (that force something to be redrawn) in the background.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                • new RenderLoop(onRender, win)
                                                                                                                                                                                                                                                                                • Internal

                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                • RenderLoop.schedule(Array change)
                                                                                                                                                                                                                                                                                • Internal

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              changeArray

                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/resources/csses/ace_api.css b/api/resources/csses/ace_api.css deleted file mode 100644 index 7080c7a5..00000000 --- a/api/resources/csses/ace_api.css +++ /dev/null @@ -1,993 +0,0 @@ -/* - Generic "affects everything" stuff -*/ - -#wrapper .content .column2 { - float: none; -} - -#documentation ul { - font-size: 13px; -} - -#documentation li { - color: black; -} - -#documentation code { - font-size: 12px; - line-height: 16px; - font-family: 'Ubuntu Mono',Monaco,Consolas,monospace !important; - background-color: #F9F9F9; - border-radius: 3px 3px 3px 3px; - box-shadow: 0 0 2px #888888; - display: inline-block; - padding: 0 4px; - margin: 2px 1px; - color: inherit; -} - -#documentation pre { - margin-top: 10px; - border-radius: none; - box-shadow: none; - background : white; - /*background : #f5f5f5; - border: 0;*/ - - -webkit-border-radius: 6px 6px 0 0; - -moz-border-radius: 6px 6px 0 0; - border-radius: 6px 6px 0 0; - - padding: 5px; -} - -.method pre, .event pre, .property pre { - background : white; -} - -#documentation pre code { - background-color: transparent; - border-radius: none; - box-shadow: none; -} - -#documentation a code { - color: #00438a; -} - -#documentation h2 { - font-size: 26px; -} -#documentation p { - font-size: 13px; - line-height : 20px; - margin-bottom : 13px; -} -#documentation li p:last-child { - margin-bottom : 5px; -} - -#documentation blockquote p{ - font-size: 14px; - font-weight: 500; - line-height: 23px; - font-style: italic; -} - -.alert-message{ - margin-bottom : 13px; -} -/* - Header and shoulders -*/ - -.navbar .nav > li { - float:none; - display:inline-block; - *display:inline; /* ie7 fix */ - zoom:1; /* hasLayout ie7 trigger */ -} - -.navbar .nav > li > a { - padding: 10px 15px 11px; -} - -.navbar { - text-align:center; -} - -#topSection { - width: 1000px; -} -.small_win #topSection { - width: 100%; -} -.small_win #topSection .dropdown { - margin-right: 40%; -} -.navbar .brand { - margin-left: 0px; -} -.brand { - background: transparent url(../images/ace_logo_menu.png) no-repeat 33px 5px; - width: 80px; - outline: none; - height: 40px; - padding: 0 10px !important; - border: none; -} -.brand.dropdown-toggle:after { - content: none; - display: block; - height: 40px; - border: none; -} - -.ace_logo { - position: absolute; - top: 45px; - z-index: 20000; - left: 210px; -} - -.headerTitle { - position: relative; - top: 100px; - left: 250px; -} - -/* - Menu venue -*/ - -form.navbar-search { - float: none; -} - -form.navbar-search .search-query { - background-color: #FFFFFF; - border-color: #999; - -webkit-transition: border 0.3s; - -moz-transition: border 0.3s; - font-size: 14px; - line-height: 16px; -} - -form.navbar-search .search-query:focus, form.navbar-search .search-query:active { - border: 1px solid #666; -} - -.navbar-search .search-query:focus, .navbar-search .search-query.focused { - padding: 4px 9px; -} - -h3.api_title { - padding-top: 10px; -} - -ul.menu { - margin-left: 2px; -} - -.menu li { - list-style-image: url(../images/menu_disc.png); - margin-bottom: 4px; - font-weight: 700; - padding-left: 10px; - margin-left: 0; -} - -.menu li .menu-item a.menuLink, .menu li .menu-item span.menuLink { - color: #3E7096; - font-weight: 100; -} -.menuTwo { - margin-bottom: 5px; - margin-top: 2px; -} -.menuTwo li .menu-item a.menuLink { - color: #3E7096; - font-weight: 100; -} - -/* need specificity to "beat" the above colors */ -.menu li .menu-item a.currentItem, .menuTwo li .menu-item { - color: #0072bc; -} - -/* - Members and the tabs that represent them -*/ - -.members { -/* width: 800px; */ - /*width: 700px;*/ -/* margin: 0 10px;*/ - - height: 42px; - left: 0; -/* position: fixed;*/ - top: 0; -/* transition-duration: 300ms, 300ms; - transition-property: box-shadow, height; - transition-timing-function: ease-out, ease-out; - -moz-transition-duration: 300ms, 300ms; - -moz-transition-property: -moz-box-shadow, height; - -moz-transition-timing-function: ease-out, ease-out; - -o-transition-duration: 300ms, 300ms; - -o-transition-property: -o-box-shadow, height; - -o-transition-timing-function: ease-out, ease-out; - -webkit-transition-duration: 300ms, 300ms; - -webkit-transition-property: -webkit-box-shadow, height; - -webkit-transition-timing-function: ease-out, ease-out;*/ -/* width: 100%;*/ - /*transition-duration: 300ms; - transition-property: box-shadow; - transition-timing-function: ease-out; - -moz-transition-duration: 300ms, 300ms; - -moz-transition-property: -moz-box-shadow, height; - -moz-transition-timing-function: ease-out, ease-out; - -o-transition-duration: 300ms; - -o-transition-property: -o-box-shadow; - -o-transition-timing-function: ease-out;*/ - -webkit-transition-duration: 400ms, 0ms; - -webkit-transition-property: -webkit-box-shadow, background; - -webkit-transition-timing-function: ease-out, ease-out; - z-index: 100; - padding-bottom : 5px; - overflow: visible !important; - -/* background: #FFF; - width: 100%; - padding-bottom: 13px; - top: 40px; - position: fixed;*/ -} -.srolled .members { - width: 100%; -/* -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); - -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); - box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); */ - padding-bottom: 15px; -/* height: 31px;*/ - position: fixed; -} -.shadow.members{ - background: #edf8fd; - box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); - -moz-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); - -o-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); - -webkit-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); -} - -.membersContent { - -/* border-bottom: 0.1em solid #FFF;*/ - height: 3em; - padding-top: 4px; -/* line-height: 4;*/ -/* margin-top: -0.1em;*/ - position: relative; -/* transition-property: border-color, line-height; - transition-duration: 125ms, 250ms; - transition-timing-function: ease-out, ease-out; - -moz-transition-property: border-color, line-height; - -moz-transition-duration: 125ms, 250ms; - -moz-transition-timing-function: ease-out, ease-out; - -o-transition-property: border-color, line-height; - -o-transition-duration: 125ms, 250ms; - -o-transition-timing-function: ease-out, ease-out; - -webkit-transition-property: border-color, line-height; - -webkit-transition-duration: 125ms, 250ms; - -webkit-transition-timing-function: ease-out, ease-out;*/ - - /*transition-duration: 125ms; - transition-property: top; - transition-timing-function: ease-out; - - top : 11px;*/ - z-index: 103; - padding-right: 10px; - margin-right: -5px; - /*width: 700px;*/ -} -.srolledHeader .membersContent { - line-height: 3; -} -.srolled .membersContent { - /*top : 0;*/ - width: 625px; - padding-left: 327px; - margin : 0 auto 0 auto; -} - -.srolled ul.nav { - padding-right: 10px; -} - -.membersBackground { -/* background-color: white; - position: fixed; - z-index: 2; - top: 40px; - left: 0px; - right: 0px; - width: 100%; - height: 55px; - opacity: 0; - display: none; - box-shadow: rgba(0, 0, 0, 0.398438) 1px 4px 6px;*/ - - background-color: transparent; - height: 47px; - /*width: 700px;*/ - position: absolute; -} -.srolled .membersBackground { - position: relative; -} -.srolledHeader .membersBackground { -/* display: block;*/ -} -.memberHeader { - float: left; - padding-right: 10px; - margin-bottom: 5px; - position: absolute; - padding-top: 4px; - -} - -.tabs a.menu:after, .tabs .dropdown-toggle:after { - margin-top: 22px; -} - -.dropdown .caret { - margin-top: 14px; - color: #6D8CA0; -} - -li.dropdown { - color: #2D2D2D; - font-weight: bold; -} - -.editInC9 { - font-size: 11px; - color: #657383; -} - -.editInC9 a { - color: #657383; - font-weight: normal; - position : relative; - top : -2px; -} - -.tabs { - padding-top: 14px; - /*border-bottom: 1px solid #848484;*/ - min-height : 27px; - padding-bottom : 5px; -} -.tabsSansBorder { - border: 0; -} -.tabs, .pills { - margin-bottom: 0; -} -.srolledHeader .members .tabs { - background-color: white; -} - -li.dropdown { - color: #2D2D2D; - font-weight: bold; -} - -.members .tabs .dropdown a, -.members .tabs a.menu:after, -.members .tabs .dropdown-toggle:after { - margin-right: 0; - margin-left: 6px; -} - -.members .tabs ul li { - font-weight: bold; -} - -.memberLink a { - margin-left: 0 !important; -} -.menu-dropdown, .dropdown-menu { - min-width : 105px; - max-height: 350px; - overflow: auto; - border-color : rgba(0, 0, 0, 0.1); -} -.topbar div > ul .menu-dropdown li a:hover, -.nav .menu-dropdown li a:hover, -.topbar div > ul .dropdown-menu li a:hover, -.nav .dropdown-menu li a:hover { - background-color: #ffffff; - color: #000000; -} -.dropdown-menu { - border-top: none; -} - -.tabs a.menu:after, .tabs .dropdown-toggle:after { - margin-top: 13px; - line-height: 28px; -} -.open .menu, .dropdown.open .menu, .open .dropdown-toggle, .dropdown.open .dropdown-toggle { - background: transparent; - color: black; -/* font-weight: bold;*/ -} -#topSection .open .menu, #topSection .dropdown.open .menu, #topSection .open .dropdown-toggle, -#topSection .dropdown.open .dropdown-toggle { - color: #bfbfbf; -} - -.tabs > li { - font-weight: bold; -} - -.tabs > li > a { - border: none; - outline: none; - line-height: 28px; - font-size: 11px; - padding: 0 5px; -} -.tabs > li > a:hover { - color: #000000; - text-decoration: none; - background-color: transparent; - border: none; -} -.tabs > li, .pills > li { - float: right; -} -.topbar .dropdown-menu a, .dropdown-menu a { - font-size: 11px; -/* padding: 2px 12px;*/ - line-height: 14px; -} -.tabs .active > a, .tabs .active > a:hover { - color: #000000; - border: none; - cursor: default; -} -.tabs .menu-dropdown, .tabs .dropdown-menu { - border-radius: 0 0 6px 6px; - top: 32px; - right: 0px; - width: 150px; -} -.srolled .tabs .menu-dropdown, .srolled .tabs .dropdown-menu { - top: 32px; -} -.dropdown-toggle { - color: #6D8CA0; -} - -ul.tabs .double ul, ul.tabs .triple ul, ul.tabs .quad ul{ - width:760px; - margin-bottom:20px; - overflow:hidden; - border-top:1px solid #ccc; -} -/*ul.tabs .double li, ul.tabs .triple li, ul.tabs .quad li{ - line-height:1.5em; - border-bottom:1px solid #ccc; - float:left; - display:inline; -}*/ - -/* - Center content (the "real stuff") -*/ - -#nonFooter { - padding-top: 40px; -} -#wrapper { - height: 100%; -} - -.content { - height: 100%; -} -.content .row { - margin-left: auto; - margin-right: auto; -} - -header.filler { - position: relative; - height: 40px; - width: 100%; -} - -.centerpiece { - min-height: 100%; - padding: 20px 0; -} - -/* -.container-fluid .row-fluid { - width: 1000px; - margin-left: auto; - margin-right: auto; -}*/ - -.divider { - height: 3px; - background-color: #BEDAEA; - margin-bottom: 3px; -} - -#sidebar { - margin-top: 5px; - /*background: url(../images/sidebar-border.png) repeat-y right 0;*/ - margin-left: 12px; -/* width: 280px;*/ -/* overflow: auto;*/ - padding-right : 10px; -} - -#sidebar h3 a, -#sidebar h3 a:hover { - color: #404040; -} - -#mainContent { - margin-left: 30px; -} - -#documentation { - padding-left: 15px; - padding-bottom: 10px; -} - -#documentation article.article { - border-top: 1px solid #e9e9e9; - padding: 16px 10px 2px; - -webkit-transition: padding 0.2s; - -moz-transition: padding 0.2s; - -o-transition: padding 0.2s; -} - -#documentation h3.sectionHeader + article.article { - border-top: none; -} - -div#documentation article:last-child { - border-bottom: 1px solid #e9e9e9; - padding-bottom: 40px; -} -#documentation article.article.methodToggleOpen { - background: rgba(255, 255, 255, 0.5); - padding: 20px; - font-size: 13px; - line-height: 24px; - margin: 0 0 10px 0; -} - -#documentation article:first-child { - border:none; -} - -.site_logo { - display: block; - margin-left: auto; - margin-right: auto; -} -/* - Edit in Cloud9, sucka -*/ - -.snippet pre { - margin-bottom: 0; -} - -.snippet .toolbar { - -webkit-border-radius: 0 0 6px 6px; - -moz-border-radius: 0 0 6px 6px; - border-radius: 0 0 6px 6px; - - text-align: right; - padding: 3px 10px; - margin-top : -1px; -} - -.snippet .filename, .snippet .toolbar { - font-family: Ubuntu, sans-serif; - font-size: 12px; - color: #EEE; -} - -.snippet .filename { - padding: 0 5px 2px 5px; - font-size: 10px; - background: rgba(230,230,230,0.5); - padding: 0 5px 2px 5px; - border-radius: 0 6px 0 6px; - margin : 1px; - position : absolute; - right : 0; - top : 0; -} - -.snippet .filename span{ - color : #666; -} - -.snippet .toolbar { - background-color: rgba(30,30,30,0.5); -} - -div.snippet { - margin-bottom: 18px; - position : relative; -} - -div.snippet a, div.toolbar a { - color: #FFF; -} - -/* - All about signatures -*/ - -.signatures { -/* width: 800px;*/ - margin-left: 20px; - margin-bottom: 5px; -} -.sideToggler { - padding-left: 20px; -} -ul.signatures ul { - list-style: none; - display: inline; -} - -li.signature { - list-style: none; -} - -.signature ul { - padding: 0; - margin: 0; -} - -.signature li { - display: inline; -} - -.signature ul.argument-types::before { - content: '→'; - margin: 0 5px; -} - -.signature li.argument-type::after { - content: '|'; - padding: 0 5px 0 5px; -} - -.signature li.argument-type:last-child:after { - content: ''; - padding: 0 5px 0 5px; -} - -.member-name { - color: #4397cd; - font-weight: bold; - text-decoration: none; - cursor: pointer; - padding-right: 3px; -} - -.signature-call { - cursor: pointer; -} - -#documentation .signature-call a { - color: #8e487e; -} - -.sigClassName { - display: none; -} - -.eventObjName { - font-style: italic; -} -.eventListenerStart, .eventFunctionOpen, .eventFunctionClose { - color: #999999; -} -.eventMember { - padding-right: 0px; -} - -.metaInfo { - float: right; - z-index: 1; - position: relative; -} - -.chainable { - background-color: #0072bc; - color: #ffffff; -} - -.deprecated { - background-color: #f7941d; - color: #ffffff; -} - -.alias { - background-color: #6c951e; - color: #ffffff; -} - -.related-to { - background-color: #89289a; - color: #ffffff; - font-size: 10px; - padding: 2px 5px 3px; - text-transform: capitalize; -} - -#documentation .alias a, #documentation .related-to a { - color: #ffffff; - /* text-decoration: underline; */ -} -#documentation .alias a:hover, #documentation .related-to a:hover { - text-decoration: none; -} -.#documentation alias:hover, #documentation .related-to:hover { - opacity: 0.8; - cursor: pointer; -} -.memberContent .title { - -} -.memberContent .description { - position:relative; - /*top: -13px;*/ - display: none; -} -.snip-container .actions .toggle-plaintext label { - margin-top: 1px; - padding-top: 0; - text-align: left; -} -.snip-container .actions .toggle-plaintext input { - margin-top: 4px !important; -} -.snip-container label { - color: #ffffff; -} -.description h4 { - font-size: 18px; - margin: 20px 0 10px; - line-height : 18px; -} - -.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th { - background-color: #F9F9F9; -} -.table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th { - background-color: #fbfbfb; -} - -.argument-list { - margin-bottom : 13px; -} -.argName { - font-style: italic; -} - - -/* - Everyday I'm togglin' -*/ - -#documentation h3 { - font-size: 24px; - margin-top: 5px; -} -#documentation i.methodToggle { - cursor: pointer; - color: #9f9f9f; - padding-top: 2px; - float: left; -} -#documentation i.methodToggle.methodToggleHover { - text-shadow: 0 0 10px #4699d5; - color: #4699d5; -} -#documentation i.methodToggle.active { - text-shadow: 0 0 10px #4699d5; - color: #4699d5; - /* Safari */ - -webkit-transform: rotate(45deg); - - /* Firefox */ - -moz-transform: rotate(45deg); - - /* IE */ - -ms-transform: rotate(45deg); - - /* Opera */ - -o-transform: rotate(45deg); - padding-top: 9px; -} - -#documentation h3.sectionHeader { - margin: 10px 0 17px 0; - line-height : 24px; -} - -div.method { - position: relative; -} - -.methodToggle a { - color: #fff; - border-bottom: 0px; - text-decoration: none; -} - -h3.methodToggle { - height : 13px; - width : 8px; - background-position : 0px 0px; - position: absolute; - top: -20px; - background-image : url(../images/member-sprites.png); - background-color : transparent; - background-repeat : no-repeat; - overflow: hidden; - left: 0px; -} - -h3.methodToggleHover { - /* background-position : 0px -28px; */ -} - -h3.methodToggle.inactive { - top: 4px; -} - -h3.methodToggle.active { - top: 6px; - height : 13px; - width : 8px; - background-position : 0px -59px; -} - -.hidden { - display: none; - visibility: hidden; -} - -.hiddenSpan { - display: none; -} - -.ellipsis_description, .short_description { -/* width: 800px;*/ -} -.methodToggleOpen .ellipsis_description { - display: none; -} -.sideToggler .short_description, -.sideToggler .description{ - display: none; -} -.methodToggleOpen .short_description, -.methodToggleOpen .description { - display: block; -} -.description td p { - margin: 0; -} -/* - Footer? I hardly know her -*/ - -#footer { - width:100%; - background: #101010 url(../images/dashed_back.png) repeat 0 0; - font-size: 12px; - color: white; - height: 40px; -} -#footer .footerInner { - padding-left: 300px; - margin-left: auto; - margin-right: auto; - min-height: 40px; -} -#footer .footer-text { - display: block; - font-size: 12px; - float: right; -} -#footer div.footerInner div.footer-text p { - font-size: 12px; - font-family: Arial; - line-height: 18px; - margin: 10px 15px 0px 1px; -} - -#footer a, #footer a:hover { - color: #8DD0FF; -} - -.logoText, .logoImg { - /*position: absolute;*/ - margin-bottom: 5px; -} - -.logoImg { - top: 40px; -} -.topbar div > ul .menu-dropdown li a:hover, -.nav .menu-dropdown li a:hover, -.topbar div > ul .dropdown-menu li a:hover, -.nav .dropdown-menu li a:hover { - background-color: #191919; - background-repeat: repeat-x; - background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919)); - background-image: -moz-linear-gradient(top, #292929, #191919); - background-image: -ms-linear-gradient(top, #292929, #191919); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919)); - background-image: -webkit-linear-gradient(top, #292929, #191919); - background-image: -o-linear-gradient(top, #292929, #191919); - background-image: linear-gradient(top, #292929, #191919); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0); - color: #ffffff; -} - -.alert-message.block-message { - background: #fefaca; - border-color : #fefaca; - padding : 8px 14px 8px 14px; -} - -body .dsq-reply{ - margin-top : 10px; -} - -#disqus_thread{ - border-top : 1px solid #ddd; - margin-top : 30px; -} - -#disqus_thread h3, body #dsq-content h3 { - font-size : 12px; - margin : 0 0 20px 0; - line-height : 12px; -} -body #dsq-reply h3{ - font-size : 18px; - line-height : 18px; - margin : 15px 0 20px 0; -} - -#disqus_thread select{ - font-size : 11px; - height : 20px; - color : #444; -} - -#dsq-global-toolbar, #dsq-pagination, .dsq-trackback-url{ - display : none; -} diff --git a/api/resources/csses/bootstrap.min.css b/api/resources/csses/bootstrap.min.css deleted file mode 100644 index c9514677..00000000 --- a/api/resources/csses/bootstrap.min.css +++ /dev/null @@ -1,689 +0,0 @@ -article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} -audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} -audio:not([controls]){display:none;} -html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} -a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -a:hover,a:active{outline:0;} -sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} -sup{top:-0.5em;} -sub{bottom:-0.25em;} -img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;} -button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} -button,input{*overflow:visible;line-height:normal;} -button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} -button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} -input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} -input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} -textarea{overflow:auto;vertical-align:top;} -.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} -.clearfix:after{clear:both;} -.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} -.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} -body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} -a{color:#0088cc;text-decoration:none;} -a:hover{color:#005580;text-decoration:underline;} -.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} -.row:after{clear:both;} -[class*="span"]{float:left;margin-left:20px;} -.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} -.span12{width:940px;} -.span11{width:860px;} -.span10{width:780px;} -.span9{width:700px;} -.span8{width:620px;} -.span7{width:540px;} -.span6{width:460px;} -.span5{width:380px;} -.span4{width:300px;} -.span3{width:220px;} -.span2{width:140px;} -.span1{width:60px;} -.offset12{margin-left:980px;} -.offset11{margin-left:900px;} -.offset10{margin-left:820px;} -.offset9{margin-left:740px;} -.offset8{margin-left:660px;} -.offset7{margin-left:580px;} -.offset6{margin-left:500px;} -.offset5{margin-left:420px;} -.offset4{margin-left:340px;} -.offset3{margin-left:260px;} -.offset2{margin-left:180px;} -.offset1{margin-left:100px;} -.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} -.row-fluid:after{clear:both;} -.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} -.row-fluid>[class*="span"]:first-child{margin-left:0;} -.row-fluid > .span12{width:99.99999998999999%;} -.row-fluid > .span11{width:91.489361693%;} -.row-fluid > .span10{width:82.97872339599999%;} -.row-fluid > .span9{width:74.468085099%;} -.row-fluid > .span8{width:65.95744680199999%;} -.row-fluid > .span7{width:57.446808505%;} -.row-fluid > .span6{width:48.93617020799999%;} -.row-fluid > .span5{width:40.425531911%;} -.row-fluid > .span4{width:31.914893614%;} -.row-fluid > .span3{width:23.404255317%;} -.row-fluid > .span2{width:14.89361702%;} -.row-fluid > .span1{width:6.382978723%;} -.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} -.container:after{clear:both;} -.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} -.container-fluid:after{clear:both;} -p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} -.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} -h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} -h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} -h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} -h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} -h4,h5,h6{line-height:18px;} -h4{font-size:14px;}h4 small{font-size:12px;} -h5{font-size:12px;} -h6{font-size:11px;color:#999999;text-transform:uppercase;} -.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} -.page-header h1{line-height:1;} -ul,ol{padding:0;margin:0 0 9px 25px;} -ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} -ul{list-style:disc;} -ol{list-style:decimal;} -li{line-height:18px;} -ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} -dl{margin-bottom:18px;} -dt,dd{line-height:18px;} -dt{font-weight:bold;line-height:17px;} -dd{margin-left:9px;} -.dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;} -.dl-horizontal dd{margin-left:130px;} -hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} -strong{font-weight:bold;} -em{font-style:italic;} -.muted{color:#999999;} -abbr[title]{border-bottom:1px dotted #ddd;cursor:help;} -abbr.initialism{font-size:90%;text-transform:uppercase;} -blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} -blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} -blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} -q:before,q:after,blockquote:before,blockquote:after{content:"";} -address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} -small{font-size:100%;} -cite{font-style:normal;} -code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} -pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;} -pre code{padding:0;color:inherit;background-color:transparent;border:0;} -.pre-scrollable{max-height:340px;overflow-y:scroll;} -form{margin:0 0 18px;} -fieldset{padding:0;margin:0;border:0;} -legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;} -label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;} -input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} -label{display:block;margin-bottom:5px;color:#333333;} -input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.uneditable-textarea{width:auto;height:auto;} -label input,label textarea,label select{display:block;} -input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;} -input[type="image"]{border:0;} -input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} -select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} -input[type="file"]{line-height:18px \9;} -select{width:220px;background-color:#ffffff;} -select[multiple],select[size]{height:auto;} -input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -textarea{height:auto;} -input[type="hidden"]{display:none;} -.radio,.checkbox{padding-left:18px;} -.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} -.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} -.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} -.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} -input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} -input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} -input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.input-mini{width:60px;} -.input-small{width:90px;} -.input-medium{width:150px;} -.input-large{width:210px;} -.input-xlarge{width:270px;} -.input-xxlarge{width:530px;} -input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} -input,textarea,.uneditable-input{margin-left:0;} -input.span12, textarea.span12, .uneditable-input.span12{width:930px;} -input.span11, textarea.span11, .uneditable-input.span11{width:850px;} -input.span10, textarea.span10, .uneditable-input.span10{width:770px;} -input.span9, textarea.span9, .uneditable-input.span9{width:690px;} -input.span8, textarea.span8, .uneditable-input.span8{width:610px;} -input.span7, textarea.span7, .uneditable-input.span7{width:530px;} -input.span6, textarea.span6, .uneditable-input.span6{width:450px;} -input.span5, textarea.span5, .uneditable-input.span5{width:370px;} -input.span4, textarea.span4, .uneditable-input.span4{width:290px;} -input.span3, textarea.span3, .uneditable-input.span3{width:210px;} -input.span2, textarea.span2, .uneditable-input.span2{width:130px;} -input.span1, textarea.span1, .uneditable-input.span1{width:50px;} -input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;} -.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} -.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} -.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} -.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} -.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} -.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} -.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} -.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} -.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} -input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} -.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";} -.form-actions:after{clear:both;} -.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} -:-moz-placeholder{color:#999999;} -::-webkit-input-placeholder{color:#999999;} -.help-block,.help-inline{color:#555555;} -.help-block{display:block;margin-bottom:9px;} -.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} -.input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} -.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} -.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;} -.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} -.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} -.input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;} -.input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} -.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} -.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} -.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;} -.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} -.form-search label,.form-inline label{display:inline-block;} -.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} -.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} -.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;} -.control-group{margin-bottom:9px;} -legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} -.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} -.form-horizontal .control-group:after{clear:both;} -.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;} -.form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;} -.form-horizontal .help-block{margin-top:9px;margin-bottom:0;} -.form-horizontal .form-actions{padding-left:160px;} -table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;} -.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} -.table th{font-weight:bold;} -.table thead th{vertical-align:bottom;} -.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} -.table tbody+tbody{border-top:2px solid #dddddd;} -.table-condensed th,.table-condensed td{padding:4px 5px;} -.table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} -.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} -.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} -.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} -.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} -.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} -.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} -.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;} -table .span1{float:none;width:44px;margin-left:0;} -table .span2{float:none;width:124px;margin-left:0;} -table .span3{float:none;width:204px;margin-left:0;} -table .span4{float:none;width:284px;margin-left:0;} -table .span5{float:none;width:364px;margin-left:0;} -table .span6{float:none;width:444px;margin-left:0;} -table .span7{float:none;width:524px;margin-left:0;} -table .span8{float:none;width:604px;margin-left:0;} -table .span9{float:none;width:684px;margin-left:0;} -table .span10{float:none;width:764px;margin-left:0;} -table .span11{float:none;width:844px;margin-left:0;} -table .span12{float:none;width:924px;margin-left:0;} -table .span13{float:none;width:1004px;margin-left:0;} -table .span14{float:none;width:1084px;margin-left:0;} -table .span15{float:none;width:1164px;margin-left:0;} -table .span16{float:none;width:1244px;margin-left:0;} -table .span17{float:none;width:1324px;margin-left:0;} -table .span18{float:none;width:1404px;margin-left:0;} -table .span19{float:none;width:1484px;margin-left:0;} -table .span20{float:none;width:1564px;margin-left:0;} -table .span21{float:none;width:1644px;margin-left:0;} -table .span22{float:none;width:1724px;margin-left:0;} -table .span23{float:none;width:1804px;margin-left:0;} -table .span24{float:none;width:1884px;margin-left:0;} -[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;} -.icon-white{background-image:url("../img/glyphicons-halflings-white.png");} -.icon-glass{background-position:0 0;} -.icon-music{background-position:-24px 0;} -.icon-search{background-position:-48px 0;} -.icon-envelope{background-position:-72px 0;} -.icon-heart{background-position:-96px 0;} -.icon-star{background-position:-120px 0;} -.icon-star-empty{background-position:-144px 0;} -.icon-user{background-position:-168px 0;} -.icon-film{background-position:-192px 0;} -.icon-th-large{background-position:-216px 0;} -.icon-th{background-position:-240px 0;} -.icon-th-list{background-position:-264px 0;} -.icon-ok{background-position:-288px 0;} -.icon-remove{background-position:-312px 0;} -.icon-zoom-in{background-position:-336px 0;} -.icon-zoom-out{background-position:-360px 0;} -.icon-off{background-position:-384px 0;} -.icon-signal{background-position:-408px 0;} -.icon-cog{background-position:-432px 0;} -.icon-trash{background-position:-456px 0;} -.icon-home{background-position:0 -24px;} -.icon-file{background-position:-24px -24px;} -.icon-time{background-position:-48px -24px;} -.icon-road{background-position:-72px -24px;} -.icon-download-alt{background-position:-96px -24px;} -.icon-download{background-position:-120px -24px;} -.icon-upload{background-position:-144px -24px;} -.icon-inbox{background-position:-168px -24px;} -.icon-play-circle{background-position:-192px -24px;} -.icon-repeat{background-position:-216px -24px;} -.icon-refresh{background-position:-240px -24px;} -.icon-list-alt{background-position:-264px -24px;} -.icon-lock{background-position:-287px -24px;} -.icon-flag{background-position:-312px -24px;} -.icon-headphones{background-position:-336px -24px;} -.icon-volume-off{background-position:-360px -24px;} -.icon-volume-down{background-position:-384px -24px;} -.icon-volume-up{background-position:-408px -24px;} -.icon-qrcode{background-position:-432px -24px;} -.icon-barcode{background-position:-456px -24px;} -.icon-tag{background-position:0 -48px;} -.icon-tags{background-position:-25px -48px;} -.icon-book{background-position:-48px -48px;} -.icon-bookmark{background-position:-72px -48px;} -.icon-print{background-position:-96px -48px;} -.icon-camera{background-position:-120px -48px;} -.icon-font{background-position:-144px -48px;} -.icon-bold{background-position:-167px -48px;} -.icon-italic{background-position:-192px -48px;} -.icon-text-height{background-position:-216px -48px;} -.icon-text-width{background-position:-240px -48px;} -.icon-align-left{background-position:-264px -48px;} -.icon-align-center{background-position:-288px -48px;} -.icon-align-right{background-position:-312px -48px;} -.icon-align-justify{background-position:-336px -48px;} -.icon-list{background-position:-360px -48px;} -.icon-indent-left{background-position:-384px -48px;} -.icon-indent-right{background-position:-408px -48px;} -.icon-facetime-video{background-position:-432px -48px;} -.icon-picture{background-position:-456px -48px;} -.icon-pencil{background-position:0 -72px;} -.icon-map-marker{background-position:-24px -72px;} -.icon-adjust{background-position:-48px -72px;} -.icon-tint{background-position:-72px -72px;} -.icon-edit{background-position:-96px -72px;} -.icon-share{background-position:-120px -72px;} -.icon-check{background-position:-144px -72px;} -.icon-move{background-position:-168px -72px;} -.icon-step-backward{background-position:-192px -72px;} -.icon-fast-backward{background-position:-216px -72px;} -.icon-backward{background-position:-240px -72px;} -.icon-play{background-position:-264px -72px;} -.icon-pause{background-position:-288px -72px;} -.icon-stop{background-position:-312px -72px;} -.icon-forward{background-position:-336px -72px;} -.icon-fast-forward{background-position:-360px -72px;} -.icon-step-forward{background-position:-384px -72px;} -.icon-eject{background-position:-408px -72px;} -.icon-chevron-left{background-position:-432px -72px;} -.icon-chevron-right{background-position:-456px -72px;} -.icon-plus-sign{background-position:0 -96px;} -.icon-minus-sign{background-position:-24px -96px;} -.icon-remove-sign{background-position:-48px -96px;} -.icon-ok-sign{background-position:-72px -96px;} -.icon-question-sign{background-position:-96px -96px;} -.icon-info-sign{background-position:-120px -96px;} -.icon-screenshot{background-position:-144px -96px;} -.icon-remove-circle{background-position:-168px -96px;} -.icon-ok-circle{background-position:-192px -96px;} -.icon-ban-circle{background-position:-216px -96px;} -.icon-arrow-left{background-position:-240px -96px;} -.icon-arrow-right{background-position:-264px -96px;} -.icon-arrow-up{background-position:-289px -96px;} -.icon-arrow-down{background-position:-312px -96px;} -.icon-share-alt{background-position:-336px -96px;} -.icon-resize-full{background-position:-360px -96px;} -.icon-resize-small{background-position:-384px -96px;} -.icon-plus{background-position:-408px -96px;} -.icon-minus{background-position:-433px -96px;} -.icon-asterisk{background-position:-456px -96px;} -.icon-exclamation-sign{background-position:0 -120px;} -.icon-gift{background-position:-24px -120px;} -.icon-leaf{background-position:-48px -120px;} -.icon-fire{background-position:-72px -120px;} -.icon-eye-open{background-position:-96px -120px;} -.icon-eye-close{background-position:-120px -120px;} -.icon-warning-sign{background-position:-144px -120px;} -.icon-plane{background-position:-168px -120px;} -.icon-calendar{background-position:-192px -120px;} -.icon-random{background-position:-216px -120px;} -.icon-comment{background-position:-240px -120px;} -.icon-magnet{background-position:-264px -120px;} -.icon-chevron-up{background-position:-288px -120px;} -.icon-chevron-down{background-position:-313px -119px;} -.icon-retweet{background-position:-336px -120px;} -.icon-shopping-cart{background-position:-360px -120px;} -.icon-folder-close{background-position:-384px -120px;} -.icon-folder-open{background-position:-408px -120px;} -.icon-resize-vertical{background-position:-432px -119px;} -.icon-resize-horizontal{background-position:-456px -118px;} -.dropdown{position:relative;} -.dropdown-toggle{*margin-bottom:-3px;} -.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} -.caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";} -.dropdown .caret{margin-top:8px;margin-left:2px;} -.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} -.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;} -.dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} -.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;} -.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} -.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} -.dropdown.open .dropdown-menu{display:block;} -.pull-right .dropdown-menu{left:auto;right:0;} -.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";} -.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} -.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} -.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} -.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} -.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} -.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;} -.btn:active,.btn.active{background-color:#cccccc \9;} -.btn:first-child{*margin-left:0;} -.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} -.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} -.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;} -.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} -.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.btn-large [class^="icon-"]{margin-top:1px;} -.btn-small{padding:5px 9px;font-size:11px;line-height:16px;} -.btn-small [class^="icon-"]{margin-top:-1px;} -.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;} -.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} -.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} -.btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;} -.btn-primary:active,.btn-primary.active{background-color:#004099 \9;} -.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} -.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} -.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} -.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} -.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} -.btn-success:active,.btn-success.active{background-color:#408140 \9;} -.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} -.btn-info:active,.btn-info.active{background-color:#24748c \9;} -.btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;} -.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} -button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} -button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} -button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} -button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} -.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} -.btn-group:after{clear:both;} -.btn-group:first-child{*margin-left:0;} -.btn-group+.btn-group{margin-left:5px;} -.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} -.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} -.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} -.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} -.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} -.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} -.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} -.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;} -.btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;} -.btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;} -.btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;} -.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} -.btn .caret{margin-top:7px;margin-left:0;} -.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} -.btn-mini .caret{margin-top:5px;} -.btn-small .caret{margin-top:6px;} -.btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} -.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;} -.alert-heading{color:inherit;} -.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} -.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} -.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} -.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} -.alert-block{padding-top:14px;padding-bottom:14px;} -.alert-block>p,.alert-block>ul{margin-bottom:0;} -.alert-block p+p{margin-top:5px;} -.nav{margin-left:0;margin-bottom:18px;list-style:none;} -.nav>li>a{display:block;} -.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} -.nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} -.nav li+.nav-header{margin-top:9px;} -.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} -.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} -.nav-list>li>a{padding:3px 15px;} -.nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} -.nav-list [class^="icon-"]{margin-right:2px;} -.nav-list .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} -.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} -.nav-tabs:after,.nav-pills:after{clear:both;} -.nav-tabs>li,.nav-pills>li{float:left;} -.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} -.nav-tabs{border-bottom:1px solid #ddd;} -.nav-tabs>li{margin-bottom:-1px;} -.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} -.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} -.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} -.nav-stacked>li{float:none;} -.nav-stacked>li>a{margin-right:0;} -.nav-tabs.nav-stacked{border-bottom:0;} -.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} -.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} -.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} -.nav-pills.nav-stacked>li>a{margin-bottom:3px;} -.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} -.nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} -.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} -.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} -.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;border-bottom-color:#333333;} -.nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} -.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} -.nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} -.tabs-stacked .open>a:hover{border-color:#999999;} -.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} -.tabbable:after{clear:both;} -.tab-content{display:table;width:100%;} -.tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} -.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} -.tab-content>.active,.pill-content>.active{display:block;} -.tabs-below .nav-tabs{border-top:1px solid #ddd;} -.tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} -.tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} -.tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} -.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} -.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} -.tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} -.tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} -.tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} -.tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} -.tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} -.tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} -.tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} -.tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} -.navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;} -.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} -.navbar .container{width:auto;} -.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} -.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} -.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} -.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} -.nav-collapse.collapse{height:auto;} -.navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;} -.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} -.navbar .navbar-text{margin-bottom:0;line-height:40px;} -.navbar .btn,.navbar .btn-group{margin-top:5px;} -.navbar .btn-group .btn{margin-top:0;} -.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} -.navbar-form:after{clear:both;} -.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} -.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;} -.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} -.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} -.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;} -.navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} -.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} -.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} -.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} -.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} -.navbar-fixed-top{top:0;} -.navbar-fixed-bottom{bottom:0;} -.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} -.navbar .nav.pull-right{float:right;} -.navbar .nav>li{display:block;float:left;} -.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} -.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} -.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;} -.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} -.navbar .nav.pull-right{margin-left:10px;margin-right:0;} -.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} -.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} -.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} -.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} -.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} -.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} -.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} -.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} -.navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;} -.navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;} -.breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;} -.breadcrumb .divider{padding:0 5px;color:#999999;} -.breadcrumb .active a{color:#333333;} -.pagination{height:36px;margin:18px 0;} -.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} -.pagination li{display:inline;} -.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} -.pagination a:hover,.pagination .active a{background-color:#f5f5f5;} -.pagination .active a{color:#999999;cursor:default;} -.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} -.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} -.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} -.pagination-centered{text-align:center;} -.pagination-right{text-align:right;} -.pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} -.pager:after{clear:both;} -.pager li{display:inline;} -.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} -.pager a:hover{text-decoration:none;background-color:#f5f5f5;} -.pager .next a{float:right;} -.pager .previous a{float:left;} -.pager .disabled a,.pager .disabled a:hover{color:#999999;background-color:#fff;cursor:default;} -.modal-open .dropdown-menu{z-index:2050;} -.modal-open .dropdown.open{*z-index:2050;} -.modal-open .popover{z-index:2060;} -.modal-open .tooltip{z-index:2070;} -.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} -.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} -.modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} -.modal.fade.in{top:50%;} -.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} -.modal-body{overflow-y:auto;max-height:400px;padding:15px;} -.modal-form{margin-bottom:0;} -.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} -.modal-footer:after{clear:both;} -.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} -.modal-footer .btn-group .btn+.btn{margin-left:-1px;} -.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} -.tooltip.top{margin-top:-2px;} -.tooltip.right{margin-left:2px;} -.tooltip.bottom{margin-top:2px;} -.tooltip.left{margin-left:-2px;} -.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.tooltip-arrow{position:absolute;width:0;height:0;} -.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} -.popover.right{margin-left:5px;} -.popover.bottom{margin-top:5px;} -.popover.left{margin-left:-5px;} -.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} -.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} -.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} -.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} -.popover .arrow{position:absolute;width:0;height:0;} -.popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} -.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} -.popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} -.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} -.thumbnails:after{clear:both;} -.thumbnails>li{float:left;margin:0 0 18px 20px;} -.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} -a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} -.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} -.thumbnail .caption{padding:9px;} -.label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.label:hover{color:#ffffff;text-decoration:none;} -.label-important{background-color:#b94a48;} -.label-important:hover{background-color:#953b39;} -.label-warning{background-color:#f89406;} -.label-warning:hover{background-color:#c67605;} -.label-success{background-color:#468847;} -.label-success:hover{background-color:#356635;} -.label-info{background-color:#3a87ad;} -.label-info:hover{background-color:#2d6987;} -.label-inverse{background-color:#333333;} -.label-inverse:hover{background-color:#1a1a1a;} -.badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} -.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} -.badge-error{background-color:#b94a48;} -.badge-error:hover{background-color:#953b39;} -.badge-warning{background-color:#f89406;} -.badge-warning:hover{background-color:#c67605;} -.badge-success{background-color:#468847;} -.badge-success:hover{background-color:#356635;} -.badge-info{background-color:#3a87ad;} -.badge-info:hover{background-color:#2d6987;} -.badge-inverse{background-color:#333333;} -.badge-inverse:hover{background-color:#1a1a1a;} -@-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} -.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} -.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} -.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} -.progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} -.progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} -.progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);} -.progress-warning.progress-striped .bar{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} -.accordion{margin-bottom:18px;} -.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.accordion-heading{border-bottom:0;} -.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} -.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} -.carousel{position:relative;margin-bottom:18px;line-height:1;} -.carousel-inner{overflow:hidden;width:100%;position:relative;} -.carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} -.carousel .item>img{display:block;line-height:1;} -.carousel .active,.carousel .next,.carousel .prev{display:block;} -.carousel .active{left:0;} -.carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} -.carousel .next{left:100%;} -.carousel .prev{left:-100%;} -.carousel .next.left,.carousel .prev.right{left:0;} -.carousel .active.left{left:-100%;} -.carousel .active.right{left:100%;} -.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} -.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} -.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} -.carousel-caption h4,.carousel-caption p{color:#ffffff;} -.hero-unit{padding:60px;margin-bottom:30px;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} -.hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit;} -.pull-right{float:right;} -.pull-left{float:left;} -.hide{display:none;} -.show{display:block;} -.invisible{visibility:hidden;} diff --git a/api/resources/csses/font-awesome.css b/api/resources/csses/font-awesome.css deleted file mode 100644 index 4697599c..00000000 --- a/api/resources/csses/font-awesome.css +++ /dev/null @@ -1,303 +0,0 @@ -/* Font Awesome - the iconic font designed for use with Twitter Bootstrap - ------------------------------------------------------- - The full suite of pictographic icons, examples, and documentation - can be found at: http://fortawesome.github.com/Font-Awesome/ - - License - ------------------------------------------------------- - The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0: - http://creativecommons.org/licenses/by/3.0/ A mention of - 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable - source code is considered acceptable attribution (most common on the web). - If human readable source code is not available to the end user, a mention in - an 'About' or 'Credits' screen is considered acceptable (most common in desktop - or mobile software). - - Contact - ------------------------------------------------------- - Email: dave@davegandy.com - Twitter: http://twitter.com/fortaweso_me - Work: http://lemonwi.se co-founder - - */ -@font-face { - font-family: "FontAwesome"; - src: url('../font/fontawesome-webfont.eot'); - src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); - font-weight: normal; - font-style: normal; -} - -/* Font Awesome styles - ------------------------------------------------------- */ -[class^="icon-"]:before, [class*=" icon-"]:before { - font-family: FontAwesome; - font-weight: normal; - font-style: normal; - display: inline-block; - text-decoration: inherit; -} -a [class^="icon-"], a [class*=" icon-"] { - display: inline-block; - text-decoration: inherit; -} -/* makes the font 33% larger relative to the icon container */ -.icon-large:before { - vertical-align: top; - font-size: 1.3333333333333333em; -} -.btn [class^="icon-"], .btn [class*=" icon-"] { - /* keeps button heights with and without icons the same */ - - line-height: .9em; -} -li [class^="icon-"], li [class*=" icon-"] { - display: inline-block; - width: 1.25em; - text-align: center; -} -li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] { - /* 1.5 increased font size for icon-large * 1.25 width */ - - width: 1.875em; -} -li[class^="icon-"], li[class*=" icon-"] { - margin-left: 0; - list-style-type: none; -} -li[class^="icon-"]:before, li[class*=" icon-"]:before { - text-indent: -2em; - text-align: center; -} -li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before { - text-indent: -1.3333333333333333em; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.icon-glass:before { content: "\f000"; } -.icon-music:before { content: "\f001"; } -.icon-search:before { content: "\f002"; } -.icon-envelope:before { content: "\f003"; } -.icon-heart:before { content: "\f004"; } -.icon-star:before { content: "\f005"; } -.icon-star-empty:before { content: "\f006"; } -.icon-user:before { content: "\f007"; } -.icon-film:before { content: "\f008"; } -.icon-th-large:before { content: "\f009"; } -.icon-th:before { content: "\f00a"; } -.icon-th-list:before { content: "\f00b"; } -.icon-ok:before { content: "\f00c"; } -.icon-remove:before { content: "\f00d"; } -.icon-zoom-in:before { content: "\f00e"; } - -.icon-zoom-out:before { content: "\f010"; } -.icon-off:before { content: "\f011"; } -.icon-signal:before { content: "\f012"; } -.icon-cog:before { content: "\f013"; } -.icon-trash:before { content: "\f014"; } -.icon-home:before { content: "\f015"; } -.icon-file:before { content: "\f016"; } -.icon-time:before { content: "\f017"; } -.icon-road:before { content: "\f018"; } -.icon-download-alt:before { content: "\f019"; } -.icon-download:before { content: "\f01a"; } -.icon-upload:before { content: "\f01b"; } -.icon-inbox:before { content: "\f01c"; } -.icon-play-circle:before { content: "\f01d"; } -.icon-repeat:before { content: "\f01e"; } - -/* \f020 doesn't work in Safari. all shifted one down */ -.icon-refresh:before { content: "\f021"; } -.icon-list-alt:before { content: "\f022"; } -.icon-lock:before { content: "\f023"; } -.icon-flag:before { content: "\f024"; } -.icon-headphones:before { content: "\f025"; } -.icon-volume-off:before { content: "\f026"; } -.icon-volume-down:before { content: "\f027"; } -.icon-volume-up:before { content: "\f028"; } -.icon-qrcode:before { content: "\f029"; } -.icon-barcode:before { content: "\f02a"; } -.icon-tag:before { content: "\f02b"; } -.icon-tags:before { content: "\f02c"; } -.icon-book:before { content: "\f02d"; } -.icon-bookmark:before { content: "\f02e"; } -.icon-print:before { content: "\f02f"; } - -.icon-camera:before { content: "\f030"; } -.icon-font:before { content: "\f031"; } -.icon-bold:before { content: "\f032"; } -.icon-italic:before { content: "\f033"; } -.icon-text-height:before { content: "\f034"; } -.icon-text-width:before { content: "\f035"; } -.icon-align-left:before { content: "\f036"; } -.icon-align-center:before { content: "\f037"; } -.icon-align-right:before { content: "\f038"; } -.icon-align-justify:before { content: "\f039"; } -.icon-list:before { content: "\f03a"; } -.icon-indent-left:before { content: "\f03b"; } -.icon-indent-right:before { content: "\f03c"; } -.icon-facetime-video:before { content: "\f03d"; } -.icon-picture:before { content: "\f03e"; } - -.icon-pencil:before { content: "\f040"; } -.icon-map-marker:before { content: "\f041"; } -.icon-adjust:before { content: "\f042"; } -.icon-tint:before { content: "\f043"; } -.icon-edit:before { content: "\f044"; } -.icon-share:before { content: "\f045"; } -.icon-check:before { content: "\f046"; } -.icon-move:before { content: "\f047"; } -.icon-step-backward:before { content: "\f048"; } -.icon-fast-backward:before { content: "\f049"; } -.icon-backward:before { content: "\f04a"; } -.icon-play:before { content: "\f04b"; } -.icon-pause:before { content: "\f04c"; } -.icon-stop:before { content: "\f04d"; } -.icon-forward:before { content: "\f04e"; } - -.icon-fast-forward:before { content: "\f050"; } -.icon-step-forward:before { content: "\f051"; } -.icon-eject:before { content: "\f052"; } -.icon-chevron-left:before { content: "\f053"; } -.icon-chevron-right:before { content: "\f054"; } -.icon-plus-sign:before { content: "\f055"; } -.icon-minus-sign:before { content: "\f056"; } -.icon-remove-sign:before { content: "\f057"; } -.icon-ok-sign:before { content: "\f058"; } -.icon-question-sign:before { content: "\f059"; } -.icon-info-sign:before { content: "\f05a"; } -.icon-screenshot:before { content: "\f05b"; } -.icon-remove-circle:before { content: "\f05c"; } -.icon-ok-circle:before { content: "\f05d"; } -.icon-ban-circle:before { content: "\f05e"; } - -.icon-arrow-left:before { content: "\f060"; } -.icon-arrow-right:before { content: "\f061"; } -.icon-arrow-up:before { content: "\f062"; } -.icon-arrow-down:before { content: "\f063"; } -.icon-share-alt:before { content: "\f064"; } -.icon-resize-full:before { content: "\f065"; } -.icon-resize-small:before { content: "\f066"; } -.icon-plus:before { content: "\f067"; } -.icon-minus:before { content: "\f068"; } -.icon-asterisk:before { content: "\f069"; } -.icon-exclamation-sign:before { content: "\f06a"; } -.icon-gift:before { content: "\f06b"; } -.icon-leaf:before { content: "\f06c"; } -.icon-fire:before { content: "\f06d"; } -.icon-eye-open:before { content: "\f06e"; } - -.icon-eye-close:before { content: "\f070"; } -.icon-warning-sign:before { content: "\f071"; } -.icon-plane:before { content: "\f072"; } -.icon-calendar:before { content: "\f073"; } -.icon-random:before { content: "\f074"; } -.icon-comment:before { content: "\f075"; } -.icon-magnet:before { content: "\f076"; } -.icon-chevron-up:before { content: "\f077"; } -.icon-chevron-down:before { content: "\f078"; } -.icon-retweet:before { content: "\f079"; } -.icon-shopping-cart:before { content: "\f07a"; } -.icon-folder-close:before { content: "\f07b"; } -.icon-folder-open:before { content: "\f07c"; } -.icon-resize-vertical:before { content: "\f07d"; } -.icon-resize-horizontal:before { content: "\f07e"; } - -.icon-bar-chart:before { content: "\f080"; } -.icon-twitter-sign:before { content: "\f081"; } -.icon-facebook-sign:before { content: "\f082"; } -.icon-camera-retro:before { content: "\f083"; } -.icon-key:before { content: "\f084"; } -.icon-cogs:before { content: "\f085"; } -.icon-comments:before { content: "\f086"; } -.icon-thumbs-up:before { content: "\f087"; } -.icon-thumbs-down:before { content: "\f088"; } -.icon-star-half:before { content: "\f089"; } -.icon-heart-empty:before { content: "\f08a"; } -.icon-signout:before { content: "\f08b"; } -.icon-linkedin-sign:before { content: "\f08c"; } -.icon-pushpin:before { content: "\f08d"; } -.icon-external-link:before { content: "\f08e"; } - -.icon-signin:before { content: "\f090"; } -.icon-trophy:before { content: "\f091"; } -.icon-github-sign:before { content: "\f092"; } -.icon-upload-alt:before { content: "\f093"; } -.icon-lemon:before { content: "\f094"; } -.icon-phone:before { content: "\f095"; } -.icon-check-empty:before { content: "\f096"; } -.icon-bookmark-empty:before { content: "\f097"; } -.icon-phone-sign:before { content: "\f098"; } -.icon-twitter:before { content: "\f099"; } -.icon-facebook:before { content: "\f09a"; } -.icon-github:before { content: "\f09b"; } -.icon-unlock:before { content: "\f09c"; } -.icon-credit-card:before { content: "\f09d"; } -.icon-rss:before { content: "\f09e"; } - -.icon-hdd:before { content: "\f0a0"; } -.icon-bullhorn:before { content: "\f0a1"; } -.icon-bell:before { content: "\f0a2"; } -.icon-certificate:before { content: "\f0a3"; } -.icon-hand-right:before { content: "\f0a4"; } -.icon-hand-left:before { content: "\f0a5"; } -.icon-hand-up:before { content: "\f0a6"; } -.icon-hand-down:before { content: "\f0a7"; } -.icon-circle-arrow-left:before { content: "\f0a8"; } -.icon-circle-arrow-right:before { content: "\f0a9"; } -.icon-circle-arrow-up:before { content: "\f0aa"; } -.icon-circle-arrow-down:before { content: "\f0ab"; } -.icon-globe:before { content: "\f0ac"; } -.icon-wrench:before { content: "\f0ad"; } -.icon-tasks:before { content: "\f0ae"; } - -.icon-filter:before { content: "\f0b0"; } -.icon-briefcase:before { content: "\f0b1"; } -.icon-fullscreen:before { content: "\f0b2"; } - -.icon-group:before { content: "\f0c0"; } -.icon-link:before { content: "\f0c1"; } -.icon-cloud:before { content: "\f0c2"; } -.icon-beaker:before { content: "\f0c3"; } -.icon-cut:before { content: "\f0c4"; } -.icon-copy:before { content: "\f0c5"; } -.icon-paper-clip:before { content: "\f0c6"; } -.icon-save:before { content: "\f0c7"; } -.icon-sign-blank:before { content: "\f0c8"; } -.icon-reorder:before { content: "\f0c9"; } -.icon-list-ul:before { content: "\f0ca"; } -.icon-list-ol:before { content: "\f0cb"; } -.icon-strikethrough:before { content: "\f0cc"; } -.icon-underline:before { content: "\f0cd"; } -.icon-table:before { content: "\f0ce"; } - -.icon-magic:before { content: "\f0d0"; } -.icon-truck:before { content: "\f0d1"; } -.icon-pinterest:before { content: "\f0d2"; } -.icon-pinterest-sign:before { content: "\f0d3"; } -.icon-google-plus-sign:before { content: "\f0d4"; } -.icon-google-plus:before { content: "\f0d5"; } -.icon-money:before { content: "\f0d6"; } -.icon-caret-down:before { content: "\f0d7"; } -.icon-caret-up:before { content: "\f0d8"; } -.icon-caret-left:before { content: "\f0d9"; } -.icon-caret-right:before { content: "\f0da"; } -.icon-columns:before { content: "\f0db"; } -.icon-sort:before { content: "\f0dc"; } -.icon-sort-down:before { content: "\f0dd"; } -.icon-sort-up:before { content: "\f0de"; } - -.icon-envelope-alt:before { content: "\f0e0"; } -.icon-linkedin:before { content: "\f0e1"; } -.icon-undo:before { content: "\f0e2"; } -.icon-legal:before { content: "\f0e3"; } -.icon-dashboard:before { content: "\f0e4"; } -.icon-comment-alt:before { content: "\f0e5"; } -.icon-comments-alt:before { content: "\f0e6"; } -.icon-bolt:before { content: "\f0e7"; } -.icon-sitemap:before { content: "\f0e8"; } -.icon-umbrella:before { content: "\f0e9"; } -.icon-paste:before { content: "\f0ea"; } - -.icon-user-md:before { content: "\f200"; } diff --git a/api/resources/font/fontawesome-webfont.eot b/api/resources/font/fontawesome-webfont.eot deleted file mode 100644 index 89070c1e63c2703b2334023922ecc1664f759b55..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38708 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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/api/resources/font/fontawesome-webfont.ttf b/api/resources/font/fontawesome-webfont.ttf deleted file mode 100644 index c17e9f8d100d01a002029b5b93cc081062618bf3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68476 zcmce<3w#sTnKwLVG?ryqmPgmIEX$HC%R&e-NU|)1@deu$1IBTTLyhB70t8F~1pE#Y}!pPn=Yk!_m_Y@ zeE(-gHinQUeRsc?%jnEGb2;ZZ&w0*sAC7SxXTw3@#P06FWvl;L`ZdR~8r0S->RQ;% zf@tB`T$~4PSS}~;$(z28^C6tCUc330t)VU4a-2WSaeT+xojU@;O~M|IGmN9XZvEB` zo0p%Fzk!Db(0=QNTefdSy~uIKyYXww|sHiwz>cII3&g(}v@A%AfuW~=e`DgKtmp5%$dyD7E|Mw!tslDjK?>67^nXP<{ z@I1#jt-qhXW%I56RSSNMbM%)zx^>I;9rt$qLzZLgJ&r3|vh|Kzw<;H6PL7p#;rX+7 z-MVId{pW5d;Cu(pjrdQ{;a)nlB|*PuZ~BR%{a$$0ptV?WRz)=&k8{TT3I72toS}Qh z5WANv;e?W7B`G|}um2ie;nq|0l|P@wwE#)aWX;w)@7T_@a}^f^Bd4O$7-Z-0qxGbC zO+Y&{;Eev)=xuC1&giNdPGAB2cHt>_KS~u`fZM_y=l+&E#hu}P$Q1(SfE<_?_*Ag2 zuJ#w)dF%Pw^R4Im&aXQE>GOYm{)^`yJ%8$a{`~(u|FiSI`(w!k;qqlX`c5ynO5BRhNe^ z-*ma_a_cWFKmX0ofA;fde)is*6M-7hC)SA7qDQO}CDARqM5pKw?P7^2h=$7FTL1kj zC}^Gf-#akO?Ib`MO~=(!qBRm|{|o=nJp6C{F_l)A896iO{m{EhKG>pTWwE~egYCr{ z7U%BZHnKU~SGm9Dc5^$qhqA=v!(8^$3G0fUn6;Rsyhk{D`%D5uT zqFaNZ;9m{B=`F1E;<}*;?>j5Kp`cO{8&bM=uGAVt&~#}(tOTpha`Zx7r( zGU8P@Jf?J3u3oEZpQ_vbD2DLjP(TqHmMC2R(BWGT-x8q0 zTyHSA(tB7t8_>__g=W2XqE`&!CFQdM|EvwiGAke}rLmErKwwd*`1C5W7Xc&a;_>E^ajoy1{iSD zV)X5%V&Bj|TvjG!1r4 zgN+721^YDvKu1H}p<8ZSJ$)o}t78@harhvCZOOXO;Zh~gKQ!O_JX)NyPIK+7y`zII zeOlz!a@vtDz6m`K93B`7twHZY9bWvfPzNC2J}{IA)#+T@k!JyhA0@C>@!VRY^%PHZ z%~DVcxZn^cYy|xTg{Z_z+y}C@4-3@5m2xw=JlbN4P*6%`g%y}$k`?Y8oeN^FgvAs? zAy>v?+?+(p7PN(fw%|SkH?fxo=`?Z|xqaH&m|W@_)`OHYqU|LYaqw~}E^nhZNCl-V z$&?ydsXC{W74l_O=Gf`>vWl`;zN(ChRnD?l&ZoV~(Ub}%C3h*arIK!!(-;cYHKZGx znwgC?7@f(I^(mJ#Jn`sz!FW74!TIBH|HX+%!zHiCvW)79y>UOa_~ZOOeoa^#J9qh) zC9fF$T$=kAE{`6@l#+r{A}S4mb2g<0!)}rl(>Y~UL5U^vrdiY<6IT{fW{J5dfG{&j z{g*@~SWtp;E`zG3>St`ZfB0+86*CJ;Y_?UgiAqe&Rj~I36mv7#`_I^Z`VWWEUanM# zr>zw>N9=T^b`RQmM^Dnat4Uls8p1F-(Q@?ZcT@vm>oRQ>mfcJJV#G z-Q1B0%b`o-%{R9MgDu1J(HJlpdC&L8U(u^>)^^X!zcjW0?tb9GB5n_tcM5pX?Ja% zU4u#*Sc26?IHIkyOweX5wKDt*)ip$Bvq(e42H;4wOsX|B^MFyNm1SBDEiBk28~fzW zPWk=3+;z;z`MtNjy0PV+6$4*v89jHKx3(sh@~nGtopbK|W)IJMnwv8&oO)6*-$ibF zNwwV7C13nk99I|y{f_>x4JL+%6NATZum@Pizpy>y=zXwHj75FEXiV(;%2NB>_J#fh zL|d?yOU=Nk5LeCR!AQrLQm+l%Sx}sXTv#I^lanpA8d6D`b1PrUFqsiH+t9W5%+}@| zqpPBk)f=}pZ~Nxn&hUc4_{32u;IE!I8Xs&63yEz{@9hrHUlxfhn;-7p`}DSs&)&H? zKJkbo@$2K8cY%ZwJ^hXGF!}*rfN#o#9ZgBeQBuoFnZs?2giDMK83!}j~LySvX0(bs*%dHgUx0o%n&Xyuy8pG+tCYSjcE56 z(Gh#tYDQ0ZyCm7EFLsyY6douCBOAN6|IN_QBV(PTBi?nJR=Glp=7-H5Uv=5VlcD-7+aDet z=r9{AtrnsA@3##7%~)60*xw9o{%*5iu~r(*?SsQ%b&ue5SYsH5#^e>(pr4buHgIsC z0@uHn`x1D%zvJ#Nu1QBBw|sjtNgLhnloBc^`;*EnId}7sR7yz|a%&$z+k9F1o0QU7 zQ2u*T>6LT0|KDh%^{W)uZ$2=mJ&EhEh9wruM>31(tiPbF#!<|D0_%E1QrTL_fA-$v z)Us8~?ZR~jANmHJVZG+A z|EcFsrzhLpwxgo-F%E3lZ8I#TOUIw08oy@SNq@TIL8(SH+hlU7~PD!0^ zwiyThcTy+Ln0x#V>4xA?sNX$tfq%Bs{dcHR9{^MITS>bZ&4Hkshrp-tY2!w&L~|cZR>wP}xG4B#2bA_E%5tt}|EVs05|ZBtTNR8U%y`9;g<(nTG( zYuO?yE=%IBMPhCSu7Yr~93*DZGVm^*P`rdhlNmO}4FScj2`C{C1QeX!K=O)`28UBS zgS(E90{B?jhsr4F#%6Fq5?DbW_(7slG2#a?c`d}eYXZx=XLNzZzREcl@=D(`>!-;p z58T$?e%k|@ymBD;cyNK$bu#F%o^)0&2tICgT#;GUKf4Sv%UtIwJJV&BGZ&6rBeQJp zzyp}w`gpLz>O5(61W!7zg?}4&^CbLRWCDH>#`>}0tawKn@1x2GgIm%vw) z>?Q%%@}C48$oeEz{|mvyegY7w@xL5A1Q@_Xsqzv}c+mx3+k#z<^0nwgIwRLmO*l zlH2Zb@V=obcrayOB_;<4{-tMF_o!JAEc-2fbI+UmMxQ;@-+$Lnuo zd7*+9m*6O)V@Nxuv?Ep?Qs78;Q9#l)4MK z-l?r%8VIh1$j3Ox-4K`oK1qCDbUAI$N7x}rd_i=%aFFyeMoZ-{pp{0B>)4^la}oN- z1gcTTMJdAaTCtCg{0TZvjL^~W7D0O4N9B@yByzDYqT$ZZjaj3Q8{-af+qwKO;m+=Y zazIvmz@Wn#ICd74of>DD`z!|CQpgt zZL#GVZp=b=vU?a8c5Ok`0o!R~M`jyc=dtgMn1l~WmA<#4S!rlq&XV)thjl+In)ZsHU3 z(?(yj-)M1I-m#Wg%w_&;jj6F&HX2*IGND*h2-*{yWwE($iNzYsbQm+;ZDo9-IbG^& zuH{QDVg>H9nvE@Uqx}(!v9&W3h((P-d+K&s1@vac1+16z^NNag`_h>QVI1m=?^>!=a#=uCt!Wdf8WvQy*ftA*tg-%Ze z&sS8r#>0k%qM0{|0xJT9N4xsRuql9rW*b4sG1B*ffo%*)I|t_kxp8%p7PZOsf?)iZ5*(Pp96u$RXf&p*aL2FYPqJ+2N1V}@#fIsZc^bA4YMt9n9x*X*xITTT3G zr*q=C$(o*MdRA^YV{Xi&SUv$928sO@=IJdrNJAn8LIT##5P*&=o zhu74{P_V>li(txZjqH*3Ps~*V5YR1$#heSJhNMzapj{wW?F298s}0tHoaJ0$ocIHw zdYtG=B~8wg0FY^FPz*n93p&z47o-2dMzF-the9S^AMACrPe}o=@r7XgnBl0J_RmuH z+`&IJv6O#G{a}Uu$O$iB`o)eN%({I$dq8mT zY(x2NPh*;*toPvvjsYV|+F-~;R4DF&O zTm-DBMJ0IAR*XL}14FL#goqdAa*263GdpW1c}{y%eJUwT=MpkgT!gL=Cs|kDGBtKn z7l`+~&O#?ovbvw%b=ObTpPf9ZzWMr|^Ft3|!+-hVp`nM*?if4!&=5N!2m3>_UJA-` zP<=Qk8@Q7!^!lDXud8qBcW6)1?|8X*=gaEv*(=%&KgP`{&^iF;RGI*ONRVV^7cB{5 zN^!uVR3MXrv5+@dS1n?lA31r7LH*T7PS5YG=7{o?mb zPnLa8^kXd>t>Q#YwW@k2d}5^`_G{LSaR(@@5~3LZwYYHK`< z1Z-W-<-ys+AYbXf5MHh5gpQp$kK)CIKz6Mcb7qvFDkRkOmVtc2T4AooZv?X=pdvRj zMkEuotO)ktRLKeD8wZ3%1!*T-HXN{gNnjIyElNT``-!~ojj-hvL6(Z)e=yEcev4Z* zNed*^6d@Yqwy7uCF#S#(ix`dv*`GA&wIV2~M!<-{?c<94L^#{EExfx*SF?v(bd(r7zF*f*cJiCVidm-YwCKE zPYdAFR8X3(f=>&^$~`~T(|yV zwbmr{Vs$~OgW(mltO3^Nb4AKc{JU7lMSwnjQ0kngM%%z>Ezm+Hq@PZz9YHCW2{trF zV7)Lp?G>!X((X6B?QgfB{DR;LAODaq8ud+V z^sNX^d>8bYKlJw7Lb<>XOgzb#UxWX1;qh}V{%5D*f05eGL$_;bx2Y_dF-N1eMMR&K z{@4=F`dK7^@UHKl70F0V!4@j3Lf!+%g=12 z_YiIxFaJyFE@KTijm4aWW6Baaw^S1kz2K9YBpBB!(LKpc1}CQXlvx;wETzTbS7$dsY~K~^ySo-hNj)cGVH0K#bWx3n2^@>ZL1C2 zSDn}*T7(oH`si;Ddeic$JJ(4e{=G+jKXnpU7k|ht*uP99h!=J64lW3dL&T>~tV+@zOpMs5h8egAhAStQLERh(A~l6v zG(*3-K^oSnjcBsfz;NHXuy^_JEwo1Tolf7*rtHw*y`bUJ_3xl$kUc;2jF?(or$eY# zRK!E@{NUMiBNL3)7rCPm-AEL<_LuE*VF^Vd6C8>4A1qyEH4;+e_w+_2u@@5m@MPiU zr4hFcwyBBdQ5``o>zpifp*n(QqA@T8{Tgen8hdOL@w_l7YYL1xGJr<}(hS&U0OE6s zx1cZ*&j9urNyRJXYBX92fGZBFhYSd8k;w7G6(lSYVY=75@t!X#sn znKYsLrZK)OIOzl7as&;n0BnQi0^ycop%o9lv~Alzeq}{y=0bT~kh@uy-=0{py{%*G zClXIFbB8b7m&x?i`^NY?BJ(XL=+YHmd1>nj%lyd17v=75L)9Z4cMK*HgWDI3Kf!$V zmQbd@KND(!d*(D=$_Y+mE|-V%Cp0`@Fl^@l0L3gSMj9bkP&nfCa>QMjZP+~xS;c6} zx!l?&K}->NBDi==ZGW>N)Q~3(gWdvCr{tF0Sl>jM$k72hve|}^=JH@{7;bMHj)vS~ zpXdt3SSsQheSCg*Q`ffjs~g(}y1%o{S0Ap~_MPs5w$v@_w{>L}HvjFYFH*9;?dF@? zqMg#EE|Tno??|2FYx&;>JH$+@Rpi~_gx4nskuK30oN)R(#jc1T_`Hd*n-{IESrM}h z9X)&+_5cTNB))$k&A$r*{d664vY;fzTo0yuZc1yCe=Fe1;t*YXeE<@r5XIW=)yXXrBeev4uf9SjmG*>&jzr3_8>4!`cIVi!{z= z^*ZJD)AlDwp+4>0}{i0{+{%9n~_P=tO z+r9hpEBgbH=>0>~>UL9WW*1E3vMC|s=NuL z+v2RB*}Q=21=|^SpsDi)lt1>M-GGEcoP>lO)D_rQ7olo*UVqdp$^j5otD!1<#yMt<-9}k{ScKCkDjLi5;Ux$dN?pJ?t zOg*cD21r_{ZLg1Yxfy8~WX+C&)1v`PMzS1+|^2kc+3WKVqMSGz$W6D=6jUi<$HIP|ZYAc?hynpHeIu z)px?>E2X%g_es*c&P;(TQ^Jrm=W5%pki;Vu3yxw=#LPOeJr@)=jv{$-DiulibSg$1 zb>jk@3}6w%ZW0o6vj_!f)0PXlYVswKMRLK*)kIOw6mqoHe)x#u4C82kDckEkO@j!d>3 z!JjYES+{|%?w(kPMfw;!ap|#p?lCMpa^%tp{+T03)K4B!SLqiVVJ9x)9s$p|bmGVn z4v@zmjklRT4_T_{epM`ew43kB4R@DUR1(+Nde04~o1%v<|0pKcyXRMerp;V4} z5px!lDho=b4qQMMUVd9IROxZr} z-(!ozBV#>%BfVS0OO7@z+Y;H2Ut(iE?tcOcXxZgol>C#XYa{usUM_Y_(ka;`r!ii*@VA}pL(LyCE7g#TS+C!4F^ zxR4oX)Zum1#D}f8acw>SZ=o2*Ylc$)B*wc^)8y~q@(AuB4_DIhjTE5DS2h)tG4kmo z)jjFi$wi&)vYkuk=07o$g-LcLR9}v#An!33Is-sP}Tb4OIMA zTdu|f24HLxYU-EJz68l7)7YRnae^b#3x*FCq*7w2$q5?-7~Wo`Mo2rT(M0eF_OD_C z^!5$RNDZ*=Ykpy+8Ke8Eb2BgSCZ6|Nq_|mt$aXp)I>+~$T_%e~9Eut8zHAvw3p^inM%~odHQpCp)}5~O@XTD#ZxDS# zl>pt{QPD5RLZt{Dm#@?B zT0E6jzv$`A_^pCDo9-Ro*)}AYo%OK=v1-E`qPNoOL*=fH6~07gq>KN7&fL3g(AT@b zGGZXWX^ocyKhJSa&c{JA#{619S6muhff^9>-mNV!VzU4zjT6BZ2QLU1?Ym@wBcEF6 zO8ZsPe0B|%WHndW7v-)XQ&876&2P+xbra|2kZuJp2iFKs1>%lLYG^1Za#D!_lM=Gx zIR{O6-lJJlJ>*=8^~B{GV&D{K11ZoK*kpoal(CV}6xLn+$W@Rg-{sKyYNJ|EeHLyT zluI_qgDqiA%?L+3LGyOIl!8d6S~qfT3crX9M# zzu}Lo`x0Ghfj!Rls{4xcph&Yl7}Wxjg(Mmk=qPmEka?oI_X_-+K^LGrs@5$Zx`~&l zt6lST&dr9avr>{(=Gt;mKbAqgU9p05Nwv@_sK$CIi$ZH5Sjkv5DSBc>&}{hGTcotR8k80M$v*;mW#S$VZ1%eG8d~qRX5U@)FN^mdz1ZMqHGC8^t{jd(caGdCeA|OtI z2mLU-U!wFsukhk&11~sY1`Z?zWaNx+LqBiOVh=z_0Iyy^31B7N&SIMq$SU*gIcF`w zETPL&P4IDUW|9Mn5d9wr1OAfQM1pls^B@n+WR-j)kp~E1jWQ@A12J*x7l8}LMa1NR zc5C_*s8D!w#5aPK`CH~%oGyPk*jnS09hRU|ih9bNb3BO}BQwNSrP3o&xx@Klmgo0n z%@$TF533!PWK?3JwJ~h%=0i^&PQ?17yzSs)RX%&%=ZlN|f=RGfn&k6PegO zH&ri9!O+8$U9wVfPT5&d`jYvIon*_XV6bJt*K?dsB7V>wZxQfvMWtlMYbtvp#2@ULJ445J8u)Utgz)OnsB+>e%dOhhc&J} zfr%lfe)^X-kPb`x3v(dM22Du_)KI+W^F?z@k_%?6v?#>j1b=1LK$Wn;;)+tzD5R3Q zxD%=~IGmC@gHw7w1fWPmDK-=r?~O)Uuo=KJh39zzQ&Z+lNFxH+?!9qSrP1iG>K(b& zp76Cr<1Vu~;BOauoAbjXHBzEuY2V)NeJ{3sWyo_kdz|j(J(*hN=HV5Cr_$Ymc}eH~ zl>;;Eu2}Ox{}bVaxXNfWR+_CIOK^2NyAb)ulS3{OZ{;fnjo630g5BnyCC~FU2Ya$v z*%J0eM@K)`Gu)Bv35TjItb{K!@MV=TfchYyZY{4CMx#l zb6MeiWzO@@w7l`}_v_UaqGEeKmqzvM=i%vc+FWKwEK#|3w9qkEVKbespwcs~4`29O z+*N+ssx_3^O;gcFQ*HE&O6_iO`bAn;61Ca%C!M_T8+sC)kWMGEbMVHbc5I|$E<4Ah zq{Y*X>Di7LU6H2RXIhK*oNm%C&1lEDbj+jE)54v~vxX48_cms>s)Nel{RquF7Ov>#%Y_FX%LN7@f2B2tNA6xwwBL6g}d zij`tzFyonFTlY|t`qHDnkAt?E%tDD^_gRcCV7_275$i>?i}V{@X%e(+H+PhKfm4>r zxs~@qK83C+B`aIW0XLs=5=~0o39mVMyY9D53U;3 zjMk%{#8vZj(+09%hOAN0JYgQT7;vH6LTx_h zwpUp&W42-DVwfSCao$;H^;Y{#mP+%wA!{ABCf;oFx`eu**DdgM@<1qb=a4wicw<>KiayOVKmmLuy_<`an+{blOyAHaWe7 zkA!U42zhgbP-XTzyl%5!?0WqH_T=zJr>WE^xO{hoEYgEs=eI4EZ#%u0e&e-2Yq30Q z_X-p?1(Y*DSHgo+eh?mQRx_F~0vyqz$oR6>yh%cpFx<%M#%xM9<@ z=WpM>i%NaA)3pmaKcnr3Y0W9xN2+j`sGzCC{52rp4f;_`;v{AfdL-TR!2e{LF@G99 zG&3I$q%sz9YBrn62&>?g=_th>i0f$^)xx%1;Q2|luAx+}oJtBOaq!m}}y_X1;UilQp{?o6fT1X^Vv~5h5TQ!CH^kTWYB^_N>_)vjpw5 zOIj>&kMkjl3$qOILC1{ddckb^PJi42`co3_Xa<7diFTh^ z?cCMkHyTYwAgJho+o%aUGTKDJWx``!CU>QMrQ1rpY>$(A`kn zRYTD>1w8@u7I1%oo*dRmNC=H!q1xqQ91LU^O}v`)^Sw4YPZJoQtW z*FM~RP_Ks^b5u5H*N|^d-**43cEr5)VK5Xna*+$hem#AZXfYh6QDA7XD?>AEE)FdgQ+H2|(y-~u z(EfiL7dXd1JI?9jLQu@qB+X(!nm({&*PpYG9@t0C+5b6QoQ{{*FJGCkDFpm;xH#Po ze06N&Kyj@h{szkp@i!PH;%~6%2DMn6OyHe!-vjfb)XGzzQ7fF*$v1<9M z8FNv}?bFmAv@WOFaW!M@Uvhpe9(>d~zP3Fc)RwG<+<&gb3P775X{)}G7Q#oD{{pCA zivK0l0!&#^FXDt}*rQe6!>hCENV52e5)2xfgN*U;k034pNZVdNW#2{LIs&} zi>$cLku81=>3!0z(2rDRa|^)_E2YFO>9HiV+eyXUE>s7zDJBLAAsFAo*Q~y4q54th zkynH6*FxG6M9HcoC{k{%z5rO^4?1aLjLY{}h@}=t8-!(o{(YtY1lv+*aYE88Q-s7V>~s zGlr;W6p5FcAycLeE@upZORIp#m!{V*DkXhT+NVg}0B<5PnnDEu`6vht9BCpA9CVCf z_LdZ=5M^1cfWxgX+`4?u1nS$utc%)P!r_)d`8<0~f{$3@($R#|=w`3IBM-KR!|hPQ zU$q}Q;EU0~Z7kvf{8^A+0N%$%FBe#RVIk7JT*#pl2DV@!AJkk=gVm69f>WL@unFga zl#IfiRctneTyN_k*Pe!w#6!|btqqQ!lM2Y9CKzf*9@@kjTYO;$@8pLaUV9@9jh zA-pTJCX~&DLc7>whBfMM#=pwE9y0{Yyi+opC;AOf?+S%7+0fd$U3i&hgZiZ~3ZDlj zq8ldl*8nuRm_g4A5JQ>m(xZ9c#EhgLIY07wA0HdSrDKB+ zbxqt3rR+mpUs;}AuU(PNZs?1}`qt}x*YcV;5WCcR#VfGrAqOKCx{pl~4(a5if$j&; zeGj|>bCu{lyyoEhnlp2H*FVJj+6M0b!yPx_6Zhf%eZnd@zfHpUHo({qyEFQU99Qrj z2Y_``v7Te40X=jV$gG2(bpG zqD>HvG|=odAhZYSz?gIG*r!A0rdog69Nadx#u<}`j{bOT?0+5`dT*e)dBAP-)c8z- z!)`QreIBF4ODi7g2p&*=vNaSGgkWgfKPv}<9S^N2&WEXa`M~^Gz!Z!();J9iD^u}6 zS#WCIrXfStb5Uf-Xy-<_e1OJ@{m-J=Lgs>2>yFC$qLnbE(2MHUC@J>kf#WINRxZO~9%p-JvkDcMCdiwK3FAZBHfA~~4EB9kiz*r=}@ z@+M3SY-xrs& zdS*mC>YY(fmI*5!cxk(rQp4%6YXs~<@QUr_@_vFH+^^uPVZ@5ky<&CG0ND4S&L{ua zoEr{7r_1VNx&vN0{IE_}&Ct%sX)O*6NCx=~ug;8jtyZ)&u!jcexea|jCXf{vs}b3>eFyR2l+A^d`pQb>AI3TTT#?&{}* zo|M{hoaP<{4`hB8&{W(uMSAD3(%`66w!K3xlGaao#W+ zeKIV183(U(I?6HjXbG79QNYez!filf^7)HV2-e6 z?fRonL@KErPs4d-L{T3ISK}N}&v+c$te_cJ>$m{7Tgt}-G$`g#fep0*44To!72WW4 zb|u2%{z+kjH8LB2kJW1wL!n63#P(id%1U%*E!8CQ-?Iz$=*7FDqP2#9p}0>M{c}k! z`^Y!df9yB&=l_D9*gx1c4F<@dISB)irjtT4G!`ww>aRH$`7c7BXbFYF)f0E{=dV8f zb)y|aH(Fyfbg`Cy!G3Lp&P#G7-6j8l{HEYnh)ZXRP0raheg&|H%l0&f`A|3@JR1sK zS}1~whPq33L|l?IvB*;&u9{ec@DF_sr}|%CaExI0`3TqM6X18Ufqjp zdu8CRthkTv;oK{0kh-eT`Kh%HOe2^PQhXS|KB8-XrYl#yS$i+$YBT1_2cGx}223&K z*9wvjtah+t6zv09XgV4g?E(H-=R7C>Y|tUjx%dUS`-g;ibl{^%-SZ4$Gbg%{>_w;N zU+A1cy#kA}k&}e_n*LPJi4&THr{A;~6{A1VV-r&Ek`M;=!9{`{6yy5`FN;eZGm+l*{80r1cnQ|DmVwnD`W4IB|=X#RG6D=J0SJhev0T*M<=_ri%*6 zX}oqFRx5bz6!zV^E4+3L&LB^j-JH}A0eeD>><1a{uoI3g&P*y9K{TC~AuANLHNx(L z=(;-B^|)|05MkQpSB^(m!V1n_p(y<+5a6?S7 z$k^D99b;qa>uN!LeQb^~%F%;Wyk&&<{3pZ0j(xWJEM=Z)Y7 z{84|Z{z(0)Rvi0&b@>i6EC17*X53cw#(zjv+dZCli)Zg%H9s|5+9P3^R2Tu`ATMbD7%81E`FsLJReP|51Bue!# zmKJ3CjD+ffu(v{@&@BwGuZHSK$ZV!ay~*n!Wa@VtLy~yHJ}~y+AY#E>gAa}k*pZPX zqF1@ZV-dY7!Z!Pk-bQ%^UAG;pc{0M>;*+SL3vhl)bUH=;%+v#*A-(niQ_q~d{1k4d zSJLA|cSG@MBAg$uT89xx?H`Om)x~pN+fws z(Q$=iK3+QTf`qqkj4t0G*-bzsyvZ6__lsO!UElp-z0_1T1LVdT~XbHE0| z57;K%O&$vizCRxeJR{h)LgqY@mfdI$mEVD_NZnwG+U^i%S}uMp;CwrTCz#K8JZ#Xc zJxg705k<>2vHO%eb`oz8iGW-QL}m0y2OV#qsHV*d@d&vY;4TomTousp#tU^kg7l@> zpMi;6!fGO41pq)#qTCR<_Uq-4_fM-07qHYKtnW}8@Fjp1ek<7Xln{u#U){n8TRfi>>+;h-hGV*?p2 ztGg~gYVe?bP!AM|OcbQe&xz#sQi7;Y$c`c@2uRaHMm}g%rh+83b!a4d@qxZg^<3xsjXdOtsd>@*QF^5xrRYbsu1wa_4x%5Bpouag7Y(f+iqN25 zO%9IU&IYfN3HaA^QRI}NH*(E{`2f4(yuju(0nL28h#xTA5W<72_EEZFQpR&R2h9$L z*`cs?3vdM*NUok_`bj+kG>{e^&OBJqk%lj^FnfWedeZFop^)lIEm1G3cc_1O#3=;% zpkO@s3fsnaiWN#?Lvj$6YO>K{%<(jKqj^Wh3+*NSx$|3Me1|8BKDN=uAn z6IIhoP+v)syIvn?0%GbQ&yzD{GMvSgQgz4J;eIdyy4X)p}WxjJlm@QVej*3 zxGS{8`N9j%VvD+uTG+nloz7y*RlH3-vRmC)G4|!g^NsA;D?cR0H#)C zcB0%lUP>&GFDsu#+##jCGE=4y-MAJcg7@JNjN8Dkj*Va z$Ze*NR^Sr}U;q*MbGjzB7_I%t*FdQR@-_W*O%2kl=SV7BoPpV<(oxdfi_JaPkErpS z1m9UM*M|79ytxKBCP5bUC_tF`iXV>vHwa&7iWJg}H@ekY%QgdI1(FGMz9yt0Q3iyN zqP&JgTH&dn_9E$wDT-qO|A%I3lkTAl<3@rK?Z53gDxx8N-}CAzuv92qt9R z_w=6lm%keL-fb4^xwXmus; zWyb`s(;xN>fAgiE?++$;J|22N9sk{{>kg)Se9{bw(kl9$$C>rDM`AvN?%5+D=geA% z~1nuRfs;`ABn-C-ReggKc6Ygo?GCyGw=HQhw24E4u)jj7+-&4Orw4H z_R2}41ZoW)w3{HC#G2Mqca|6O<(hz7z5oD5c$Z@7J?ub~EGcqR}o^gw||a6AD|7G57g@_`+g?-EQ)h^Ed9kzb!Vn;n1p} zk+)R%>pSP%$=YILTR$mUY<8n~oBICl&HrO}SJ&=Sz(LZJZ!T>t$#Nbp%PoVPtbnbB zW&mi|QcxDl$_z5GF>;DdpCg(8hx%@9ndfc*z~-faa&rj(cM4X8yO1keevL;MTcJ8bN0^B z|FN^9W9O3__kFLq`O7PCb5GCSldJpgnb-VNsV?O1yDcPn0&@QrTEBWO*+%f5b+D3k z!i#GJUuV$ssC1D>91%}~-6yqua!w()icoAO8Dks#aSg*3b^(6=tkP!t7USX#sU?Fq zpx~7GyyLTSj)@CFB(Om)Mzl^ zwfR`@$ng%$!EsgI&X8>+*0+iO2_XC8p+#2nqgE)ZdQE=o#iMZZ7pSzo>&*uT_Wz)H zwC#nlzI*1kd^>m*P$vvu^PGR~iEW2E9v{W5sOrBVL6Pc=NJ|cU8hJ@In~w23=%o{0 z7b*IRloscTeH+*cJunp41nx#z*8uD3M>KC2LM2Kf0^+BQpE%qGiYhN|$(r^~KaC*D zTvJk6$_<<-2ZOR`K%7Bu?0q%XYv3&|>k+G~(q%maqXM84dJpLv!+Iq4c!OJh{fe+K$<{+LRc$xTP55`0B$NKkHn&6|* zic$5#Q*;n}+Ir-b`82*ox0CxTe2MOECUf~lqQqbvmTkc2N)Wdr=Wp0JM%uXMLjK0v zcTrudoL|2APO57|jK!ASRJTCRe`4Dns#}Qsv-?nkyjg2MkMr_Et}0AAyh9qhhIA3l zZOP>6k_-nPq_?1CL@g!Je0a1 z$lbn$e)aUUdW!H-v~Jpp+U!sgp8A_{rjkG>7?T`Rb?G29v7n@+u%?Y_dJE!CrvB2s zSO~bcTaGy6OVa5jaaTew$gYGdzPJfB&ImC%7thMwkHY)qUnl?H(ThJnWaQpN+j@K1(%vy)x4f{z-a%^jtFl9Vrj6S+yEyZb)v|J%=d$JtAkc6w~Bi z4&^YCLr|nmDH7!}5FDKmBm2s=_raY_d?R(s@Nhh{>)`QqXA_Wb@L)9`N}Nrv8o4>1 z89Vscnm3@reWPpV#^G4YT%b9<(8%D;DiSE|XgFQp14ln<9 zRP?F8vwQIYvETb_(Nk?3QUBzjLCG+BEW&2=te!hOWU`d4|AK4ctI?qtG6b(b^juV| zQGajudF|?NanIw?p4CO(O3ND+LUv$E21C*kq+Uo%lrl^I7*?)?k`md#*=tHoJ>?VG zQ!D^eM1uz{BOtWtL*i{n<4PelbP)&JS6Yq`OWI(F6gaI@Uto z8Xzv(S^}=morEbsS&$-!p)6(`J2pvs6gi;8wQsl}b(4}tx-aSkitv7l!NkUkHtd?jcxgx@EW&sjZ)L-~o;q#hl^|1i*L8!kt_y=Xf2IU>J7cZq7 zu9P)>-B*pAaI0o-Cv_ZlLQNglKq(*~hF_(H>#I=(eAxoJKi0a`2a7wanONoPt=WJA zQ&o_nnhlyxb}C(?HeUR022UD9valPrX`jqc4GhxidMMiP zYzDhN=8orh$V9ubH&(&!zM9L2Y386wLmG(+2TfiDO&&4=Qs6o!5LvJ)pk~pM2*F!g zv%*)vJWc+jvuvl!?4BqwR7h?b28o@G$n~enr7DnEjlkNAo=e4$NiazcU7FO>F@RqH zzeS$kdJHAl(@Ia2?ejE5JZxXoleu`xXel3`SR9n!=l{rmD>(aN2A+I-sa@Txw^x`9 z=Ud|JaeP%|DBdzLgcw=%ZAgL-LsSWk-_{aWhoFdmJl?{eM4}LYK<9I`oWqS=JND9p zT)vf{0GS*qClC#TtffFoL@i?EDH&OV7{X?WJ#Q{3%_0S&;d3FhpHUWu7q(s4qX%@$ zA|knSmXi0Cs^?2iS6HeLTrJVjz@4^K&6X+DnLTAe=$&4kJsaW6xn|<!ZtddWjA6F@Eu(EYmx^v8O*#;BH`Pblll*Wm|F*LkoFb>eSCEr)a@xyitc5Te)-J70Rb7=f^{yix$VV3Ghmv{M>1|Qa#rZcYw zZfQDm!#T>|NV{4V%FYmLlWP4ETM%@~ zFTX6iLh1{W-|tqx%ZB6pg*Y`!>I*c2fV_cJ;t6MhqYS?#1?$(oto;~u?m(CtKdu{y1W9)YIL4#@h zJ-&ZJF&rD$Vh4);elBF^^A|JRdyt#QMu_M^Ks{5o%DHWmYk<6`HNLXwDvew#nuHE9 z6yEkB{Reo6Tm^_s2Vn$n(**Sgg&-pk83(XEy8em6)7_F0N)s)clVqfjWGk7%;ay_% zr@9-2ef`_~sh-HCy^)0}|4aSv+_O6OrHxesvej&I3sR{`MDBuE6@qwqaUhM@Z=;cS zRpBcE6`m^IYHRNEh1@N7udpKe7kVL2iDhnu)hxuJu`&k3gDd)LO_E7^LHO%PPs+co z|I&YpcBlM!FMDXqj`XViea4j4VTZ!YX~8!cDL(<^fh`n%7bK}dKLB!&)iNgGqdSBUHAy|=o0fk}&b4DTW{Ef?vpF}?j^;v0tf`dS zl$o?PGsXN#M5Sn+urQm_87P=z#9)%N3qKx8frIG?*bw?Hft-*tGxVxF01yG-w*v4D zYW0)QznRPxPrG8CmKtLvxJya!4X;suvVp#@v_ah!0nDxeA-`X&cpN}q67}K(y@FAE z%xCm4^^L*6;}*xn9=rg#2&bRWB1y}K4 zDN=u@gCCWrNtd-~CelUamGJ|4fQ{UEr*-1&RyJS#J_}{n9_a1;90bF)2bT68SexA* z=^SZHjdV3Mbd97^pX`h*^5AQ#b0g#{zGUO{Wj}IYYy~I zznvaO=}V(&zRG6z+)kK!`7QAB)zDzwz;Sls$9bqTVSr>AENAUIPFhZC%3)WE%^vF- zDhN_;+QBZ>>N3s$$JzV9w^3dB;+oNTEX%Sy`a70oS(eALqA0Q~%d(;<{;w#G;~3+( zig8RZ!EyePgd~IjA*60dvusLJ7Rr)91Dj>@WBKq{Ne;9x{X+uVEi8CxA4^%bkFwp} zZp-!`rCqj=Sbg7fN3tEDyYKxVmgdi$(agQ~+G=5qt-LzTe> z@5pe!6K3PYexK8940^pIBmLE0p@#PP^Y8p}*RC&iINPIVpMPyK|K^E)+-8-rwERES zZ~efDoO@d!U~=>ALz7-l49m6Q{%Urk=pp1>i?Z9z?+2q^ng@RWHtN8M+(ySVKjYSd zO!g*bnZY2~2IJa7)*&!Sv7|#-*V$zXB`G*0KuT0gC^1aYVreaCyGa}&WLW253#t(O z7>&M8Rn*cED;Mu)pS{|uh54taYvgiV#-+|59$g?Cy_#M@hiq1wx zR1C}@gK5%Q=$1Ib?#Py-9h@8~-V#sCnp!SAH@hEuY_u`l0<=kwLg|tCHkikXHdyjq z&2I-2ZF+-44ps^NXh`HKQBfcy>MHa(T_rd=f_`@=BCbNM0jI|;$dbM-9t_5p>x{A- zaPs~(c8O2KV6Cszu}gvhce_h3gd+ZGkE?J6_XODQke(=9Qxop-4(#Bcb1HSBP_7ru z7Na*D6m^25+94=@-e{3TVP$Vyxgf#)5SDe;NkR>VW0_zImtraBEoLZaXe_(Wfn7t0O0oE}7Bd?4sf;F{*B->KA=$VPozA{b0W z%h3)Y2alLCv;(dQM0hmBM6ueuyQhmt)$Vd3r+bZ4 zkQ;c>-GAjf;l5R^;Z>`&_E0C)UKbm;RPJgo#;x5NS^x!Lx>0Qr@H-Z45o%7mDC~Zi z0rZ$ibBzJ;QN}aPrrh#mingNWnfA^uA{EwT1EBdiFE>^#@5gSY5(&$z-Aib*#C+bY zG`AFUDRgj@xrSNN$+Oc)@&^}Mqc5r&G(i3hL57Sp5VJ7zX^_0q@M(i=v4N6=w7&7s z>s2-OyYC!-FATbo$hW!CEBA{Nd(Pdb zv%B18eWk$L46@%k@noN}#(UrIv_C%h+Uc>e)2|&o@ZHm6qOf-?N}qUBTvBz?wx|=_8KCI zn^|#9D{Px_#?l1K*>>hJx&t#Ubeb=)y6-@ApOgjIEd%6kKeLQtHqYH!P1@$Id!RUj zL=o0a|9F*A>x_459hFY{q^xnPtxi&6K~24Hc@86wc>}y%%GHw zi6370#SdS2jLv4`F&)ljVi%2>wNhr?#S0yKe*K=h>aAq#X4Bvu}9F+P~1L{q5he64TPm zk?Ff}{Im24O0n1i(^w9_vapvi#d9b`jAKVYG-ik$A)2w}1MBYo?DS%OF|Mn!a4Nob zVBO%y&Y~pIiDmoAWd!TSt)}xjTk8t4N)n%#>t^)j5mUBqJHA6^5Z2v@-mS@Q2Oayf z-q7liKR!Vv>r693*`DLHd53wXqI%yw*eu3^tM*CyEGbSp#TiE|#Zt7i;Idb_*u9ZBzrCw8{+B{t;4b1ioTLW5n2gTawKy-u6i+O+DJvMgASpS{)N^%(qp2}q9A z@AbLD{qmAZSG->F+psz@`1{umw|Kgv3Vh~eiRoyh-|vnDeauw?KURJi>)w-yWIU|7 zm-`{`8akn zr8f+D8JNutgh{{#RztuBr0gUP-aVVSTgu*pEku+dCnHH!#~Z)-zA7CXq|9{}vrBa! zW|myM@ZR5D`g=NDlG)ajv4XU78~h`sAnimz`IgcTFZ?|J!oRStZzjO&m`8G&1qZ_UxNlIK&Wow%>Gqr6CGVv)n$79B*vg}uxa zL`HAkU|Hf{I(psI)&+s#x+-wk%8qZD+PZDwOi@&J>oMTpdfOoy=EJ6JtQ+40=4@*c z-;)Rluz8kkCrP-Qr8LdPu7&R3815gZW8J11SN-Z6XmiqhUZdZ5Iz;CI|`y;m!vk2&+;j`niLc7sL5Kch;FDkHwR=I}DD_f%Yw{d`gwFN{MYB zjvQ1X?at6BM8W0p)mnWquTZIqLJf(6KM?WreMgT!kPhw~?}7j|SQAy1l0!&9wt_*( z7#DTLNf0^{w+BadC#$U%YcLg_I~-0KJ$7rOSxGJl?43-iq7&r>h)%cSx2ke5FdT*) zc(AJ0=@Ort7X<#O$LFc^ty!s;%1MA~AV7YjE6xi{rh@?gaj;tdM4Q4Kgs?>95%gNx zA|^n_K>n&T2f2^_MRw*B{*W%6e^C2GOzh`g@qhGLk|2C^zIXL~NTTD}kB-NyD-txj{Ut zjgrhnws}edY&G!&&ZIPPK*y+f1-w20T9__C7SPGf<|AaoqHl`)=B^+!;nO}}HSb5j z^W2+ehu+}Jk9a@<3(^4;xTFS)U&6)Q2zLt-H+m^h86{gKd?5IfQ-UhCjp0Tuux>R0 zi*Z-M#-+?=Te{(rMN=bGJU}knYgl5TQq`sabpu@hW*Hb1ke>qSzo33l1_HqQ2mq&Q zGI0Npr};DJ96pMJamh5xnljb#Y)2caV+|>f#38c+Jd$iWrJ7kVpfxUDF{wZUiYvv+ zP_)g1)tJc!rW_TOK(RC6=_{ZSU`+7~cNffLpBviy+E6S$G!%~wiRSW`5F+!E-oouM z>t8mQq5}!PRPn0ba`t#^yI-`ws5gJiZnIY?Tsw5dq_>#M`4zwQcr-u6 zw%@+*c&%UZB9sR8OMaOHVjb8nI)PQYiE`z@`5&OT&px`VnGf8nY*)7ytd_#~L zYeP-%bu@%FnR4E)H5i9sP^KY|Yz$l}Fc0{`ph>}`6lza)g(fcMWu8HxtyGgEYz?Ge z(`N~XV+3r&RRmRATma}bSRJJP&d!G)KG7QW>$u>a?+(NwLOjMj?XVeadfnXR{y%^G zWn*8?$PDCR|Md$q6{x2jCw^3W^TH?Q9 zV%(1-29G|nbu?)-y7k)0C(ftShdOwl|Jd-4I<0a4@pIqUl%I0cNZ{Y_4(*N@{IS;# zzvJP3zCZSq8R$*9-62;mQqE5x2*#)(LSPw|2{cY$PI00D`AbK3%s2LCK)((?J=IO=$% ziti#&P}AH_*@bz#qn`IvafT~- zNgBFptaGSi9eF$o9yHh%VY>IC>td_}YI|8>taB2TyD6UaVkSWH^P)fI(?&HeieOjB za-#y1AlZXhtg;Fd@J`V9=?U@fbaW5!`j?i82z-T zL%o-%2Cq!f>lSfPGHni;f7~3!xGJI znC@~7{dBs)4orG~18w$~Qpf2}LT^Nx&>K+-q-|T#HTs7k#wGFY!42pe*&9(EIZx|2 zTUl(3q1Si@H;}pnA3xbSkq;3DH#YR4B0yowIs=)P)C}=(8j6@X(REmmK_LwU;=Q62 zRSDUr8I+f?KK3Bc4&0|k4i(wUm)ZRaf6f!I1Lu_V1UH^~?OWbg^*uX_T9>T)5P z@=1~}6*V}G0ngVvkKZwF(Rcb3kE>phtKb)K+Vly<6Nz|~gx*?XHdh*Dy;AS;D85d; z_4XR^w!ME52p#K{dfWu;S16KJNo&~k!XXQJR4LVoN|&QNGQ)H*HK)I}RG>XcHj z3EHbz+Jr?KHK3}P(kI%J)LI61CEF(kWh?2c;F4)vJXPiYN+@q^`o^olpeR`EhCp9e zyW;8g;GfdowR)KW_A;3Mp1%EUS1FG!;;jF>Ji3&-O4Su97NC$vH$d8u1IZrXR3PVqoJPBe~L@2R&qd))UCj z`aYRW_X0eyAHvaED!cO)M8(JbhPom7d-LKNj2ELwb4}}(`DMqVjW!B-W(Y|&{##wz zpq)utNnlBc8B!eMI_WK-DZs?6+WmPD=L(pkJvG)Am)>3>FLOH4(5t+uG#?!DC3Z&r zqha3F>v8xEvRDEanoz03hq=Vx7xa!y-qAns7X$8X&rS)-h@bbyjn)z*yDg_AHobnO z-_>(h%s=Ea0_GF6T0JJoX>{3nLpd^t8ubQ?`&vcmYmhxw^D^tUubw&48NM;S%HcE$ z9&`qWvexZhJv7W@vJhL|PaaT)sX(l+w*#W6@h+vIa&3rU;P9-GV=ZQHV|qT>?U-qt z1b|frX&ve*)C(Em*?NzLFZ^@GhoT0TLBC{)w+xS0CWuOdE1YQY=tsWypgAVXiS|yX ze*MIlB&|de0=-c*ub^Hd5UX5nz4?a8wBFkh z4cVO~b$Yi|G)exTztYzobVgjkKY8x;-TqzsZ@F5>_Yqo_;=X9! z!;D9K2}{_#fFPwRmF^CDK5-!~FhdpRGSceF)H6TNL1`sjULXygO<`aXQ&n}E+LM%6 zq_?QQQ$cm+qAi;KX+rBo+zDHs32M$72d&Q-n%97w6sk`hw06+URXRQ*PlK-<#D`fM zxkF(}lTF|f&6JrDMWmc`?CF45WshPiDC}!@a@1aV7o9WH(>t-pu=j zrwZ#NauHd8Mgmg~0K5SNV6Y0jkqy#VGctD5>nJN^!>0_b^^I_z7o?~lOR5Z_w-ju_ zG{|C5h1$!G6eLuQ-=HHfkT=62vv_2^j77jDzS<-yQvd8B_Zpvn#MgO~-`S2VLb{R? z!7l~kK52|Dmjdzp;G7d*O%%%iGbr{gX~`IW6FB3 zH&rwJPlIN!5jo2BRT#hBy2eItxxrfQs6(>cm}FeR^Ht@E(~}Z%`nZkKQoFRw8t4f~ zVNnpZS}8F!!RA5{xJw7{@funj0y`9gW4Z~G4RcKuH&v&#svmS9x&j4hL;`&|Opi1K z!49H=h)UZEV#kvB`Wl^9qv_BSi34GmS7(lfJ=RKp%A@!#HRgLxeWAt?v|HPHhQd0@ zTqZ?KE~7i*oH*hXO`&1Q?DQGs#%OA-EpYz5{Lk9e2{|H0=xb1-_CV7v`EJuuj>~t*!@%f4GpB(u5 zd1mut`hZr3Euslg7A$^_jD8-buOZP2f-Wc@HCEqdRPv%$fe9}a(S^{R02ZdW%~IlOou6DVV$0HDZug;G9>FOX zq)KJ2E9!U${veZGdJPD}yd)n6qIAhgve(1bojG7WA5Qe&Y$rYEkSV)m8;(sQkN0YP_m~L7mc5xGrl1q;+lB!ez#vtr_7X{2Qp2r4X? zyU_@;x}s;Gw-RKTRQo-?nEG^;`J7T;6|H>z1CX3@!C*1!+HV>g38(+(*x1)bL+R0* z+A-T1uu|m*)*Sn7{^`GaE&tT}$3B{V`4_wTzw*%W$(3yr$A$*KGB|i<@a#*7d!<-T zUz7_XR!HaUaYytzGny_H45Xrp!%?qPITS9m97QnFEa!i+|IIYC=8=G-GnueCf(bWr zc{tpOpu@T{+35(3_;?}x=Kgo{uRonkKFtN4_n+xE2)5AZ@y#Pg(gCCKndzQQn|gY# zzy2kuOtcJe{(8hjSwivn8H!m%6yiyo>p_{K?nSYPA)sV-X>zdlA@&W*E_v`W4FGqj z(e;4HAn6u5Q*#Sp8%xjypn^rIAB7_sgnnST0^lB?9tjSOZ+Ngj7_kzL%kP7AMgZXD~n+)AH-C`@yP%Mb3yf23!^ zuYp0qjW)G_EqpC-K8(93>+OQ1gSe=ql18(VHd3?(Na(ZHFbs3Ri?72&GUu$TiEKn@ zGs2E9UB#wzT22;V7PRERI+JDwd&CYFVOmc@7gaScj-5&%Te`+ZwU-aY2_f=#(HO~qqhKgko)s@11mG+hfiu2b7xv{7iKSF4hub z9w33S)B&1k(NMS;3v3X7Y2DMKeX3`-^_QZ-9a-)BXmDunX}hT;M-vUPd?!lo{f6L{ zuB0V*3IC;-pGGx*jEfYvE^&9uL79KEb7-h@4og2d&j5aVkp>#j`Mc@!65k_%ALmM^ zdTsH_7}M{-!-IAptTnK)1VmfGv`%EKMKxm1$=VQ@oYey`Y#K``>p5+N_ex zA$U6!>rH!acAJ;gRK3)>QR|!f-pkMR51fDbdsF=TKknSvyZ7Y4SXcf_hHInIAw< z=UDQyI|mGg<*WK!{#9KGS0E@lYui72?Bvi`MCuv4d4=|DV%KPIWxS>-WY0(Oi)nxX#{{41zI7#m;-qV*=s3o#E{W))&>SjZzF7O*uUTxr`M4L6pFlMg>L)So-G zT?~vIpA@zw^8xd8I(^iV4Ta|wCdq3D4+uZLDq$VPJ-g)EOFQhhG ztz3W9N;+;~ZMl_S3wSWHwE77GIk=EF#4MVuc~ zEohiy$q5Eh3_(jN6!gD!KSwAvq8?9d8L zO7nT{?=`s=n%gi#AXaZ}%S>#5m<8aWLznDpp*8BnY-R@wc(^qLn@dq&ghntQ>Oiz_ zq%T&@=Jqg#jXgVHSHr3npr1?-{aW>e*E7|T2F2e#cZp+zVx%e4*OZ9>RZpj-NM}njZA}+C{{A=LRYd?m66C|XtNg>vodqC?32yFRJ@!I9&X=oc=^_A( zL?gOPn>2%FhtE4opBLWaUeK{ZebUUDzO^{sPoEb$%YOSScKj}B=FnYtLXdEFL69>2 zaR5n73kPy2M3U8|zY_?O*65o4Lw7BBy}2$U9geg{+xph@uU&kK3Ni4=YM?;~JhBJi z5lc&q*#xU7z9SnX=l6!|Hj?=e&hgxm8!0!MCc6YeIulG@%iK5;I<4B6G z@aWbMuXLp&;dG~xXigjm4(v`TaC%<_A(4DNVdRG_LP-2ZzC9A{;{PCg1UeShT!%59 zub|Zy_t%;n*i-|QjvXtkk(Qap^#RBac(F%kvm5S)dIgdeh|)o_SY&pFfGfFLg0Ps( z3cV2G)}x95QEIke0SlNK12SkWf{b4pSx>&m05|!gXVG3(<7m;i}!VpU&+Bzgg9d zw_sB>Hb%S=vWG0#6;(@->Ouyx1Pc=q6+~J9jZ0fhVC={axquW=VI{bQiL{ZTZ3$5p zDy#&ehY)Z^j#88)ktBk<{qwThmzwMt?5rxUl1CsslG*L##>1&pIDc>Z;iLBrrVek4 z`xJ=IOC(2kbhkn-jE;oWtMGhd$8aEZ{MfNofJZ?L(&bx-B9 zPe*!64nf8kdP*COq`MS8G}RX0la3@O_XhmEin-A$*Hx}!xDtqolG;5GJdg;jR65h) zNIP#_YVQxbeBL!CgTol^@ksz+AppS_jJW;%k?3?nhfq)@+EW)^zqa4ccg;OjKx)yP zlRwM2<5ih?UPIH$-7GSD9ZU?g;>;ajtf~iYLAT$)0uM0fEXc~8vza@ktPXwumRS-D zq~0kQCWo)#f}$&iL zr`mt_9?fm#xYNuvgV*AcA^ObW>>|+sS`ng=LxF{ZnW1Ev`%7<*8>UuNhi6#pW0t=BSyHmQ}2u-vWaQ98Q@j^Gsjmz*_Y8>@@t# zGu0bzID{QdcHKP?rXZ|0rt@x1L-Q~RM~OM3i)X9h!kW4Mh8rj8&<<11wpE>8)T}FZ zIZEhu(yd$|U_m@HD9 zDylVr&>8d6LI@`|taoBq-+*B~l(;R3VZFZ2=eY_H)$6BO;EqoLJ$XGQUpI#QiUrUU z-`*PS#E@S=N(tRG715N$k74#|td);(cZ5eNW6)^$Wql3JUN_vuX0ML?ABR(`T7aG` z%y|H0J39L@L4l~k>T;u&nkIV4feA@bg=s-M19eQh8k~cmo;6aI?0P<+M1Uj2))cX5flF&f zuGum#FWVU?r)pkaE^T<9@PiPH?M)eHQ)WBtJP-^ggb#x8Li?{)(Af(w$OQ?hl4cxL zPIUKb`b6=Wt=p%tyNy0`IJKywSI2WWOdWk|T=Uf`N3|31!R^Iv%*{BeRWu>%&Mipa z{;W{e*0cXM>WFJh=k=AwRWx#EhRnHTJAu26XM841M6fo_ct$7Ge(eF2JlEJiL}w>V zGwai%l=V8>LujE0_2=^jSyQuxZUgwCu`mr3EdS7*7>bG+qEwX$4p^YfNqJ)PfHrDm z9#}Gj*Fp*)304pdseQFA3Q%H8jCNwQrGn95+EE>NDoSy2$1V=RUYlHJOof4qO?iBE z^{G8;g9lcI5*UJ8B2Z)a(AFr8*avw}wA&LN9>74`8I5%CM!$@~xzXD%861`2ZqS)~ zJ#&W_2IrMJ1nMsI>%PHGhyMR+rdd2c4Picsc`=`Op2}x1pM2^hlq$J;65_Y3svUCH zF@F=A2Z+;sQT`-Y-HE|KMZ2l~CJ>&JVG6jntb*aHK=Bs(uk$Anc{XDZZw(cN# z%k%JEU;TbXmS@aN0B0?{A8dwz^Dcfrm3g&MB_#4;9S&O@sqvr2SkK&muwH{T6FIs% z5DG@j;IvQJpig~8e+|Fo12F&hTVpc!E;jNqas>2aC_0D(kJ^UE|zsYv;$utQTjAJmf;nPj#Hnc^glYu6!Am_KqR~PaMvU7n1$nE4;n%#>@Q@IX+%U0DFY&`$hKNQ+sL~Z!Cwr)XUhG*P{ z^a@`yibW}CFuDR)06XEsXzz=O_D-%*B=ZpaJztD+5VWJ1uceig_|oPW_@KzT1^ZAZ zh(eC zz?j$QE5!@qIq}bjD5XkNGN6@&M6VCPZX5O4d~NuV`qDPMJyk$y8@)a5jlg0A7`LKj z=)t0xY%p`-)lhdb-aCeh03r|-i7#A%N5>oC1~x04ll3;-sh)zy3on2;OWMO~g|kM$ zJ%l^7;nHRs(xVgUS*g{o_{d9BD#N#if4;!C4w zG6nqw(XB2{wt?CwTFJ}JHXrU|FO{j9-DnfpiUIP-4>->gXSwU<0*p)9HDs6q=-nhoGC#UnL$EfrldKOL+J^ z4aQQlsL*?`vq16~&7m@*S!+Q+rlG9#x^^v}Jf; z{AUw+G&y<;Zmgwp2K)}4qAC+agI05vQ&{JETkTxb;dlqVw?V`Y;y;u{QgeKR9SSG~ zUa02zW1#2dkNr}T9u>yxc?Wu^$m`3EXb-BQGK0yg!#iko zz$M_nGIUP#OtG9thoZ`%07vTkdIwJ8KsBC=8izNl%^?aUxGiWN(9mTibPGX&r9vz- z7~BH&32IIJhZ2&$j5=3Y4SrZB^LkViZ!l4t z5ulwxJ zPdzq%=GGq5+@FO)GI(#j^V&Ycr_A%a5Y8ZiY@`Wd17rEfT3NguumLPD&B!+Mir;a1s9e+yJr=P3MmcyhZ85=!4(>rh8ei z_D#S&`KkG%bH6)1=RT$V?I~(Q)i*_aXm%iVaz?ZuN4NpY_Yu;PD`%`)<-mXEEamie z7J55CDzfDi?_*?6PxbvU9WpEt+)|A(6S6;hN{)Jh^4u#ykH`LVnVWk>F3Az@6wyqt zTzMC#ekOY`BuC{%d5&ddg$SV?5T9eCzN7=CY$y|%&2p8fXaYFQW*fn;O&!dmwgTw$ zm(Au}%joG`L^Tb-)G{@)8!qygL=0ElX5G^q*)wpQm6mQc2sOj;PJatgqBk7Jv?br$PlN_592Hx)rBl*J$~dRU)Wl zh`_WMaP zl)sPrw^LVcWQCDSl40cltU_CLf>kZIl4__K*#WykMC(;>y;Fo4X?qlnKo44peJEns zEHd>|-ekhCuoP_|WG{n%k&I%##;|gh8_7TOgc6pWwcOhgoANj}%nh7XY!U8lkKKXu z`5ZTVMhQFQy1at(=kl5S({w(sxT_pP?3%Njbg<;&v8R^kFWz|TV!8?ToU%DUh^5v?ZgGMp5AjA!10K|3S|xu7(QnozZuM* zTn2IF7--6v&B%gJiB{zxC(gA;sJYwMq31^0X)~grN0wwQ>T|1{HX&V`!0=t$a>?diq$KJ!d+c>HEqWHi}2bet@mrhKW9cD5X5*7*e^ zJvsiF@ezg?2)P9Yn+5C5)y1GP7XR4@4S?d%d111-y4a$-@n*j_81*Cu1Hr+#5(|3$ z;GnRW^Iwx}e=-);yUpe%d;1^vjO|L^`snEBqqin+-q>?*hrG;Ub{l%u8YEk_{Lzz& zPxwHv_#1*T+$b0rOn9O}ug@$PY*PMfW{Y;@VRNF*=em9couc20Z*uwC66S|>V66QG zcXaTMFc71dn4t8%r=~cS(ytSm0>Mh$(FW zse}-1fxA;b}W8ZV5DEl+7Wgf_iPq+8%?%?C0B5$wkW_bi_$V5 zc}tu)%pyt%_0aI1ZcjrPfV{oy%^MCrFf#G^hfeNn=Z>ciPo*UP z=H-OK>l-*a(bj+D>52IEP~wO8ZhmUIzkTOP>ZgG0mb`~C*oDYppzj!Brgj#25wd1P z0%6uQ)Y8o2F%s!(CHM3a=b9Me#SFuMfeq?cgvO_8DUmyr8kKoRF3%c3X=>* z5dd@%|EP{4oChaO5)j|QAQEMIc$TGi0Cf3{<{s~5v$vZ|YmNEuobKyerB%4yK@UwN zo?!k@8I4l_=<-$+c4iA(|kemu;x+j5ls$Zaf~?NcCsdA zKHHLcD3tjUXthF_jo?BK0ZGASzQURVD8lW?y@yXJyB{xieM@HTY}R!Q6Ev7Mh-NE< z4Mx}Tz-;DJOZE&3!9iR;c1a)uy)koI$~dnP&DGrq2uIxl2~&#_EyaX6VG(Zu-pObCDsxE1tupiw-m+&>z05ik8nEJ^e^i zs5uN~m!6_wpM8Th;18c<2LJurVeps4p{l8kWU(*9UjtNRWgnLb6Ae(50u&*{pKEq@ey8OfA0-gBG^Z8Sey z=kb1Cz0;KGyvw)5rc%q$tbiPI9C)kX!WD^ssW7I%41oY05km*22}~y#h02H(977Ql zYm7EUS-@08F?2K>#R!ee>>;HVD`51hC!jG38xGQD*-XOO@R#ox(MvXCODrO}yvkgX{{}dGq)4pA z2uh4A&!u_obtj%4-hBAmc8^z5Hih&ixz20ChLKiudeOgmL!8%D`ZuTJ+|j7(=Aia> zPhSa(yA?y&6>v?36eyDLft}?)dV0=(KK;b>pkuXcz#`4#Hi(1Ao*db{cX0ZNv|iSO zRXg54IMC@Ak@G|kQl_9QAm^QVryKyN6N`N;^SEaQP?GMlSGXca!=M_72%;Pb2WaE+ z1Qu`LeF)I13*X$mj%5>0{&{!ac;rRJRb})BGX?M18rRU_UQ^ZyFG$92&RCc)M4kOf;%FYH$(@9VETt5ZP98S+LQ2WB zi31CTn3@N*VezrlZI6$Qp6%dI8tiV5UaFYe>z`U4pBe}tPx8C5L1J25J~xYy^OY{{ z2Zb_uFZk0_H%229UOqe(+jOM=HF7W^!T&(dUVh$he4L6A^Hf>C0zVt=!sXMsT0 zG}eXavEb>T3MM}-L@v+r=T&?;j&>rTY~vXJTfPc`(pc{V9{6<%ZB(F z=z!(3MABd@E|kz@YEMUtp_hLmdg^LIPznhxtW8w>J=qNE<}+fGod6aBFn2cK_vUkm z|G%#NgC6k|P1zq}x%h{+2j8R;>XQB+N!;jT(dr)03FSm%MoiT&!C>q~=9V>xU)`>O zr+zhqdvyS=OCb`-+XOTV@Le9-lV>wqLzzv5@QDCk1Fn0(@Xd{w&Cz-_%`j=~q$ccG zjV2^7V0Mt=h-=K)3T(wzV>4@3rq&kx(y(t_wF`*;$M(s-Pc5P5LHwjW!uY|$CQK{~n~UvBwcuq)BiqGoh=01G$@P+U)i_IR7*MBT0F={s zPCT#RfJGxfWPoMeIh)ZD#)wkuAj*4f3(z<;bX~IsL)Sea!0rl2y{y5F_Q7>Ae6rib zL)pGTD5A28tXNA7^`wPSbd0|R!kMk6bQflcQqWa}Sj5y&oT$(1>Vr*b8sFBMp3~}V zjg`G@v@0>^S|Y7bO|oWMD%T_iu&v2%#PaCbdVf=0dl#sR)-pX|xM0~4oLgza6iDt=_F zlEws>I?Dw8cn?>4qrYdMPl-s5?Y-CM=dS1V4iopYpkMqN^R5avq)z;d)zCc$Z z+z}3X+V<;BbH8eXMO9~LaJd!l&CE6%-V@y~u82lQ%;mOSsVG&(}5o#&s#(OlmHPp*s#nd1|ie*?OjDfzeIo=|nv{*BTO?;Q zb{YfFH;BZB=?Y5*X@WC7TjpzR?_mAFtVYwef&>?6u#Cnu69{z>D+oq*teb^O3njD9 zl&PsJO=vd8_CU*G^2}BO4S)r%Ix*G?G8)|sLI`+Oix?E2ht|(DgEGYwx~ZtSY#4p; z;?B{`2vUOc74YMkTi0w|9p1PK_J{)qZ}!dgdAz3G?w<6W8)LgS#y5ZA)N+2i&R8nk z@Yov%qeBA-w{F$Ls($|Ahq-eHp1P&Y@9KMUjh=Z95BQ@pt%3v`!>ksePg9y4#@hhZGlo-O zm$rw_o0cvMbu=J?q7<14n%kJE3i#RyqIb_YT5|RY5@tJ$k+}&wZBCHoQfSH8B?`&{ z%LCHUL)eT6%deTP=B|nFg;yu-T_SxX6z9q?tya7l^2&G_xw%hlNy%eXgd@9F8nn zJ*DEA)$tsP6E+a{!56URDW$>N=u56z-M6ri;=0OGpE$}^Pxc9#I<800@|eyWD?-gg z9FkdQ&P95!VS~zcj2-9g=H7LTTdmYIqqjt8cxeuYsXw)~kiQtfB@y$5*hu(RGaEHX z#cC3KG`L`pfPIshTkLS#V<}`ruR`gF+^IBCE`Wzy+Isblco{QH0W!1=_1%zo?G{zKdPb>KeZ zhXrIiFgOeb6FgJ0(^y?8c3;1HqQAnsVdF?$ay%+qs+FC`&yI85hLzpR^-`rMpv!4k zLI@V0REem%B1gTC+0Y}HZHkeB*&4VfK&73nU5a@DA?bBwLPt`A`X=ln`D_E`cG%9c zjV;(G#`;#KF(Fy6wF+k>7BiT&Ij{`_d|d;5OIbimvL0ktLZD@K8Qo!tL>vLxAO-Hh zDH1KJT5NtV>UhLmA1(aRO5)SDuOhIElb~!5q%o3fr{KDQEe`3nT2!lE!8wIl$qi_L&s6yK7QT^j z)~79OyTpLisZ{BGUZ?BBH>^&tUB9Hk$!QLF>kl5R_x`M}?`Qbq1`l|>x8CaY{>vtA z@1}zXybT8qGR^~JaB*;UH$W)ug3L1@*ZGUT)Kl( z?wI?Ya@%bRju00Y*>y-qr97VNp!t2N5I9Gioj5LQEShf(jRt&Q_1EYH~U@YP? zV=SOHHai3S7G{VZ=0NE~n^r7m?MzMV#W zkjRP>;$+vZf*ydZCy~}_CdrI73f$pphNR+p6El5b=*OyaVH0ycRs|4i0+QJl6QvdN z*^$f}WViH=)Dn$4hJv*MsFZ@9wJq1~?dse+9L~=YKN4*Xx`UTsxYh^C-qA^?kn;mf z6QQK`G<{Ou5CpY9=!izc(hnuKz2a|})|hiIE2V4c9;FLgLGD&=uT=K7E}+j>tM@5p z9_cOk)QBHip4F_OKLOVw_8=mShptzg^NZ_bJ2QGizf;%5#pMG+85r#l z+StZW+C+o_bEw>;{TK)>v3I!~GL(x}i@c+I;_>CaB&1;o`FA&g;NJck>WFGx$ntP z%n_XM2fzHyA1(IdO=|8hu!h_iA@UWqi+I%p5L=iq!uEq8H<*8xqbq#8myksny#x^l z*$JeM%toTnzp2q?T1>5ssq`AtvsQ0=)mj#zg=TZIW^;m$Bx|R67|m8DSJf?TLZhi% zUGN-UwKo34O{O|3pr-v-ZN>!JfEcA~LvNuse*)L4V3V&T5qHp=#Z|GuZtR;l}g zdkc0vnl38AXt)+x;dW~NM?tr)i>Nww2W)UG3k3+)z|tFGF;$@GCGv`!Lz#i^6J-Sl zyE-u3rSnS#ftn~a4&tV zZAopSgIIL|_y(M=7SX53FiDy?xgv{U6vYwQ8=)0jREa7!C3bYw+#q2g6u;g3&c8$rQzHoA~(`^oWFlcumihlpEr`sUb8>wr)Kwq+LFy^QLI!yp-%I#u6OXdFgO= z6eK3kTIz1NX>w~}FfBN_p#0V|ls{UHT>Pbq>gOUyW3iQpD6creG7~@Y8?ZxIT{mHU zW#mg1wd3A%7YAi;g-%jT$-Bmvw~XAYa^y%~s%NNsbjRrAsjrXr{OR<_GpTKd zW09TdXrOZtX_k%gdv^CtDaji1+Ji~fU`__B2Ed#hDdh51THs?hW9_fe?kGGjYs0G^ZqdWI zFTdgrYQJ{%uNQ1AY#mdJbqvr>3|nY`ME8WUy@h%$;AWTsi9`wi3Ro?RYE-825ZWRZ z{QJsC*7T}5r;cHlh028TYTjp&|4*Ge|x*%J<#879)EV++!j`p zaGQDj{PpJc{sGhp!#0V2w4nvqfqu=TCWodBWZPClGl0(z2DwUgb$}(B_4^r33ldvp z^!Svrq%y!vx2y%Gn(PYf02GH&EbBsm4hulau1I3N6~X`&qM&@olB#9%^Tq=3q=_de zQgO{ij*t1&qpC@EK0cBRwJ^^X_T7P90=(Hb$6*MeMqC8K&6zDow{CWpo!On zxN7H;0C~_gS-XJ@m9E-m>}3KbM1{jF4G0`qx1jM9XG|`S?=HfmfOW?zj%(T zf9vq!xAJfQ#Y6e`-}nOmkPms|^g7E_Zn}T;;lDj_;BOxuZC~-25;Eu=wcKk+k9ckC14sXAZSL=Yq^~0=7&DSCWJPUb`wII-efdJIZnJHWF0@AN;u4E(5Q~pLfb<0E7hi-T zt9if`8;-~gAAQ$rj}FCLXL`fovJKr#fCzb zWXyKmpdD6G3TPJyAK=l=QWiEMOoG`BXpp{U$XJz539yE!s>7({ql_83zzPO}xyC#r zE!V(0UT_Iv)Gk8j*kFxb%3@Gq`9aqP(GQ}s81XYkdz>g(4{)5}SI}k{-8Y|oZO5id zn>SzDwBx&HH)C(-ri(X?kB+}~i!<(!WRuRl%x%#P9^amTKD1+nv)Q4qG$gi1V|(I{ zK0NZw$+5AM&x}0$=$S9mws!NO*|P`g-7ffNZaq7D=+LWY4|?1+hQ3YJLWL|DEILnY z<*Hy{|9$7i`|jMHt}{9-Lz_ab)qb5J;Mj2F@y(kbKQihF1RSGB9;3R%xL?3pEdyfg zAdptMT{Mn?TmZZra)_25eQKQobA>vE`U+YaV(n5Di!p57Fq^#twc8cM5>M9EFBw|D z4^;@` z2fi{mbY>v^DlhV*5kgB#`IL&99J+kWVk|** z@!u0LtB#tTJb&Jh8s9wHA!2*(6}`t?t9{kbH$FAmC0d<`f8w=INH(Wc)RoTtR=)cuid?xVskJ3aT2^*Gs$^V6Q-Aa}$Q zJQW*!Cg4#o#wCGg)-6A!o(6X|oi}q&FW!IJQanx7%=G8dam;IL;r-9~N#0}7SO!={ zrdU=|sv691t*Sx?V%LV*i~*l2X(gPoM19zl!T<`Um{wD^y9eUC!kqPYs@HwT!b|jo5!b6OnjIBc5VA%$s_^PESW|FcIU>SvCB)n>Q_gDUnt9d*GVu{DO+JAcl z*=zM>R^8^?(~m^;4u^jDXlQ6>d;6{-MuS9YMUD>RcvMMPKI7^7sBUv!fzP zFu15;XXdB(y1*Yi#qHWG%MUG^dp~*G#zgQTrBa~nX-5rdKeK&gsA%> z8yqF=SpoXoS(=_S*$5`4tg8mLm1VHFJf|;L%3{k?Y!FmKJE$Isft~awmZgI9V}^kv zO<+D~AEszpzEOWgqz>$69Kvt$uMul^E$};@c1OE~t1>(4omZZ4Dg=e&tQG?|OGKyn zh{3|m^8cK_-&vpkTQ0-3l=AtXQc#(e=ca`S^~Ik!p;ntasygPzob^ie2SM%2bZNW6 zVy?Js;{!@Hw@Pqg(i0g)txk}e&1O5?x$RPnImL#JT^=D zATakJiitYqA2CZa;Dm^`0iqC2JVxib8Oq-}* zFr*QjekTQ0WbZ|nt@V=fc<7dns z5a|U+6kuCJsa5bbA&k){$A+YGhgD5I&-eR-2LDL6Uk}C+-A5OddM;g$keNF0kH)z} zzKM|zA(2Xa&hKsPo2(9XDN1L^r7try29}sYgEhAJ*KelZqTk$gAudaPXRyx0Au^d) z9bLLg(O?>k$zDmX9uWGs_IIW>xZT3akqLkP7*PQFKVUzoC~U647*@W2$4VY!yr2zyE!H7#bp!c#Tf&gV@3~q9?zU4*mZ3zyHtD!|JR<*B1W!HC&X_ zv`yWX{zN1wp>O(yPy5rt0zto0{N@pS$o&!iz!5-yn!m<31ruOGqi?zgoiE-CzehHF zvE;k>Xr~zvfAF1)Co~-XG-7Sx7#&~qhih1Qx`wW$b0Y3vf}yDt*%E|T)$=&cvvVj{ zygz-@dzId$0lPWM{6xhf zfA>e_gl+2c2s^GWPtPV4?m^{BR-qidYvGSQFa0+5wWwSAWA9UVzpJ+Cn#ITG@ALcL z)Ae+(;(d$XB@bwLx`yhI>Zjx{7M@T1RpEZcHbH$+`-tdG?0$EtbzOXaZEfLR3%|qK z0{5kRv%li=X;*1D*6yd&XTo{4-DtmfjPA2$;hxkM#rM#Hd!v-vl%AW)6`zr|-@zZf z)5m_Z_}f=~$2Gde*R%WMp6q)1)@UTU5ABzHi|x-pL-D=on&NZKAES1duYdI!(MLu4 z+=r|NE=WvVE@3zfqxHbA6z^nd&u#~a=(Y4?;nbV zW2fVrh7KOOby(Bzg5j+Nk%B#iX@!#tFBUB>I#--pysr4Kkt?Jl+uqT&V>*r9GH&qr zVXT^YwPT)IZZW1bFJF$wQaTM>Qd|S>I&-C*0t50t52(+*Kke4nud$>+UD0bmNo8L zP~D_7H8(XcZ0mT)D=zQt%K4O2i56j5Qe-_vMh#1lI{+t_G-Z)|+C`^sQkj^kCRt9A z_V?~AUnQTDGFa}UWXkt9$!$8zc+WPEFY3>POyAf+Kv7U zt{Q8UdD2?EK<<0hAlHy{B#x1vN@cz>TPauSWh_QN**5VQpwuc0rKUkjiR;b(|L2u! zLznGwyzD=*mzlvnLjMXOMH5Ap-&fvGqPAYL4PBP6FL^e~K10%LxLmTDCRt99^$O`r zlFYKh7(uZ>j;=PZON=-)|$&;+SD3>Z_Usqbr%WEkU0?4yE z2A!1EGR9)1vP$|7wWG7#vaYK%7IuT&ct_??zgjxuT#M_JeYjp)GuA?eGehPyLU-JN z8*vkQ;AY$+*U*XSbwV<1ttWaR1HF+cLyEGIgFeVb9{NfLy#5G7g(f4{4VdzNV8eln ze7O!Eh(Yqj&m9;74-rJ+BZfGJVi<;_0EH;R2oz%^Mq#uJI36qae;g<6Z4*#}QcT2M zn1snF!xT(KIVx~BreV5t@To)?!849oElR^VZ*#3OhVtFRi6VGSO~T0DVucoOUJ6gJ>#JcDPk5zk>0 zo=3CH>%JK;U<+QvR=k95cp0zYRlJ7Ru^n&7M}QsJi8rweZ{cmcgWY&n#_7F>y?7t3 z*oXc200;0PKElU1h)-|`htY;l(T*ed44>l*e2K5{HIB;dYL4L>9LKjff$wk;~ zz-j!5pYSt&!LK-j-*6Vccb#7|Gb{_EpNw9xuCZRCny8nkG3ty4qseG7+KdjP%jhMe z7EeYqh%q|x|6<_Ddf-V6Jc)rPG4Lb?p2WbD7i+=xOvcdKx{Ao<>ijr_s~s zX&qkhe8pli@I=o)klx&~c? zu0hwJYtS|58gvc1CS8-RN!O%n(lzOtbWOS@U6Za!*Q9IGHR+mkExHz6i>^i2qHEE$ z=vs6wx)xoFu0_|PYtgmn+H`HYHeH*pP1mMt)3xc^bZxpeU7M~=*QRUJb?7>D9l8!( zhpt1{q3h6f=sI*Ax(;23u0z+M>(X`Ux^!K-E?t+dOV_3A(sk*&bX~eGU6-y)H~Bsp z4|{Yyx*lDRu1D9S>(TY-dUQRy9$k;FN7thp;qgZ3M(9RaA7y>Cqn`OhnNO7YM43;N z`9zsdl=(!NPn7vYnNO7YM469I*Qe{#_38R_eY!qfpRP~Wr|Z-8>H2hix<1_)-5A{% z-5A{%-5A{%-5A{%-5A|i(p7nWkrQ5UKG2fqzqrQpk@T@;y`d<(acNl#Rw;!osiR7E s0IN%P#Jl8{+}?6sX<kVmq1GwlT47+jjEAp4isJwrx&q+nLz8dB1!A+^$-+Yp=6*@2)aLk9o=6#Scq{BKuRL3xRQ zg{h$l0FX)at@-8v?4L<@ZWiCdLL|HqTU=Ru)b*t&Rpb1vUGl)iI~cP|2FZ0wD{ zby=g|T>m%Duq#(yZ4EuX^X5eVzgQwrJn&vSLtE2tuJW5(`qt$T>Iuy_*gJpsl^gus zmks~`BNZpw&*k7``W;)a^R1)*54E>6Xzr#)-(xOB`t~9J18K1Q)VKZL?2kp*|2Jm9 zgz9|l|LpA|n8%v2fr){^4ww-PB$9!V0eJt6;3VkLw+^8Lgd70)@4A_?SypfFcyB*< z)M8pdfFgk~i@u43v5_Doyr2*WBqSnMPhNd#T3(wJIlAvQ}$Cw>f^9B6}GdQfKWQ8hP zsie93%Ll|A(`I2G|!UB%*SZgwg^Zck7}II zA;>jOQ78&dk(r~*%IpT3MXf57AP6;$V^D3KV+{A!8H8BR>A04s&!Cdmad|2zDhNW# zyxMU{%(ih^JLgnef`3Vv(fANCM)!&}F7nHbeiug#n!6v_96kM0C-*MO|oEm0r7hXHuEX`hb$Uu)D| zm_gfiU4Yp&?V|5nK?iUGSb{JDvH^YoZ-5&h4Uh})0Js1Y0rCJlfbM^DuB+G~r!9oE z36BUCFt|d*wT9M^9yjcr4*@f{_}j>YC*%;?lEW!J$`OQ6FhCT3tp+t@;Uns8~XN6c*ld)$U1+&zzuUs41Sd9C>?Z- zJ=H#e_!_vlYsAP{lvcb)FHo%X*}{5kHBs9XKie6^g8VYZDyVF23!d@0K)iV8h$bC3 zQC!EKmRA2sirN=4=Ax?HH2J*Nr(54}Vh}_<6#%s|pyv6500EI4ZLWoMoE9GW(Wqh& z8aWXUmg{h1?6XMlMFM5GQ&Ng&KeP#QIDWY|k6pgui#Jo&)*iqASrf0%y$4&G`*}2U z4GYiy76j7lsC1>6@f_&+RJZ!<8~sl zL#=H(O4!}L+^TerYU)jIx_bmHhX8Is$ha?a=Iv7|;FXuQn$-dUT*QmR>#LyYEWDx< zlfRx~zNb#>zn2LF0P^((K=fGa?1J~eT})==b!R0Q+yCdm`iebqt3fa^C#rZ5K{^q+ z_e{~e&lzDX!&t^-CnX|*CxIi(NR?S{sW(0sH?H=wzy=o@0T7xB9x7A{bbklF)TNj|M zuWkK;M%0)X(6+vGR{f>D-b)O=J%S?>2J+oU#XjnoyQ4iKb{z^nmTe@o=b0qJ#A2D=apVBjVjjz2uWp zJEi)pC^eh{Ue0b!x)zAMd9uDn(}%Jaw?!jiHY+ryAfz9(xUOXMQU2M?8HTp({w)hvqva(I20(t_w8XC@e^aV{gC}a&OSXB)$xle=TCBTBXfHx>~-@84XeG+Y(5vEUHIN z_Jmr6&IPyxVv;mi_KJl8JS&di3OQZA&W2#Z&>@)K;pwnL(4W7@fHF1KfXG%2h}>0;%-NX*E^SLTWpN)G_i22I2+*>bGQTi6JN)%2F+s@QNtbvYR(E^a=y07l_BPY& zV%nI?nhbU8Y#r#al64O^71`W;0hoxa7P-Z6Da@N7z^5O7LR4$(q9SiUtCPF80vZH`k|Zg6^m!SsF=A0icYU<^$d)Zh%Z; zk`k`s>wGU+Rd6!%K2SN3j)E@x?FuWf9$2 zsas!@ySpnHQ=xU9vNq2*EN@W!zHeI#?*rxIS2CA;9^h|6TOSZW#QVZ{!n54 zUpBfySs$UT@Wq>dov|KCXk1UIUuV7YqisoZR@*I$#^e`lZtnf}Hcej(uFNy`q~@qF zJT37v=Z^!;6zHnJJ6yJmpZ1CPoR_q^A|pF|l6iVRs!!8uQg^6_TNF(mU+`syTH2|~ zCSN3=%808qen$R2G!OKK_C!^~3NY@raO1YBC9w`GGX_ znMjf2kgbT0z)cx4fZ`IbtU^U2dQ9N?Ue##c0t- zYXid#@`*Q8Lkv}wVAex&MGrV;=Y9F220fdU3sm@k8PTk-5a^z^4h&qUVn3M<<`O^? zJF+U=zuE_Cj81c!j$UxuU)_lqa-?0nVBFQ)J-Eaj5&yYiY%I(i%Di}h=g|gEbh#!1 zhPbNiaih$_J75DlbB&qk20mfb_3NQ~Odt~GAebqg{|NTTc#{8!@ebmMW>TL?zr0dXzs+MYKn9YdT||>ctNChDgJyECX{270 zMw?y_D6mk)R3$K>6=ZteV_vD);4%LNW;y__t) zqHT+Q`+=x0>orHDe8DxQdmnySVHH1uEzR2^pha3g{tZ#Q*oYUBKob{8{-uEyW*6c! zPAdmQxV=2w8#HGIWHbD9iFB%H0LMu+r3{V>zmFAZSD=rP*{jj%L>RaGWG!+}jmmwu zAy@9aPKdiZ%IXxOM@;xyyj131jX-LUCqiP#Hj^*X8l%tPsjl(pVfB7@%3%{D&C+!x&KeV zjjb4+j!Z#3SLS>p{+b3$EvmhBCUMy+Ub^$RP3)9)W+OfYyY(P>PmPLqUcU0w+E111 z1=ib`%TVS}O=_S8QHtIe@300j>eB&@jJ594cyiU2%xNSZGoHE)=oX1P1i3Q=5{ps{ zZGDK+MoRtSPfU)&h19yG)T$gA%MUY~c0a(?S|>qbCX2(eS6k~OvRpMNsZI~JN2&s= zYEZ!#a}7E;$gg}*DOPY$Sd$t-&!KUUu=)Dvw%|C>oA}YUamu!7yPd!V+C3BYAdhrW zKP2*+FcpZD?OaE24AV>?`Y4U@%$3g1nhl^a@ay-JvgaZFhof&58t0$4BIVD}rq}%h zdquO=mkqNxO|_R6s=;{8=}y;+pXrCa0A7E}x&2rF0|By^d*#ol-R%(_?GRvWL~l)R zD-b4{=5J7TWozY7MHWn`6>~+3gqv#b!#f2C6kJPti~woc=r&mR#X=YqBIvOG?y$`2ZJAfWXls?q6wqYXB%f5A zq9}FHAEhzu2=&^XvG*u!rQq+hGr!i?_H8DkGQOYuU2foQFeS|uRUgR~r}q%w%=9Gh zQyY!lI$d2BBb8_os{C|L6VQDx_+#nGT+?9u6VDT~wU&WTI@BCI2K5?^q<=J1+$@KO zo8Rw#byIu`51F*>Q!f5#a%F}ejw2^K8^Y*;=F!u{|LAQOq?O$o!=h)f(ckCqgpG+C zSJIaY=PKV^_0Jau$A{KdPJKGP!uyOr>KdMdYobDs8%S{2;e&f+?L6DqsMs| z^M7OT*t#uuzJdo(yyev3l?uj~#)Wf=h%$yN&MA^&7a4VxnWLSJA&0Vo2XLLklg#4j zU^14lj>ihC?Gufxy?Nf0oOU$YEsE2%&z4v&@@*bJ5?Yvu-l6yrH0ICv8ZM20hh6on zK3M)?tz*-o+zF%}uA%LPnoHOOZ>b)5u#)T$C(9|6H%B zdV8RF`M{%!r$37SABWO!$^|jlshnxM#AENU+gX#q`Q&>&0el{M?R(=q;mlT4YC8ckf|*bkb{ zFmrD;+tr1gQ|##xB^Wsb=)K|DtaTRauS9Skh>tELHGovSb5DZP;l=sM8b`5&qrHs3*&t zb{1(PwdwssR$FVYE8=Nn5LUHWe>n0=GqIFRexpP7mAo=uBUG{J^v}#9nF{j@no)`p zP_VFs4m)K18bJRWqw>7-&&eV@#9)C1EOly0{_Po)1jI);uamhQe0j|6KiD!ma>_Pq z@B_C&*xZ&7m&EGF_mEra@l+N5`)4+jOjxEVQZ`K!j!Gj^lb zn;E7}_#G`FM)KXyzg1uCyPribrbX=Wt@wmjND_VT>bk9Sp+_O<*+mdK2kZ4abBzm) zXIG9+8n?CSC}s`Vs+`=1O#bM`J7l!Tl$^bs3=`MY&>i7mZ|JkV-yW2Hs4EscSm z#~r~8{ZF{yzvH!;n)1Vvy#tW>X-nv#H{ zqTs z{-k}wdc$HYRDLXcOv-U#`*pT*{UW);4w3XB5iO1)dw#zzN+$4d<)xvUanATD!t zY(NDCO=ajI9rhVF8*2kV7I+HCGd- zAb~*cixTi~)X_nnhgqVRv^CfZFHQMu2mBW2c=Sj7mRk84d!yXuFG8oVuqHxd+}1iA zr0V;;56m-iUpq{P1MgK9B1E6BcY#eWns@{}q9n4~69jTh(kTg9IIHog3IX>y(-_fY-T4K1aLL|MB7-5-bA^%EJ`{Hng6%T%;8+ox= zExyyKE=itR&6u_R(GmXq2`hu~*n3d`?J{ys>UD-@`8Hd^|3LCaD3@Ko?eh_{Ez1v$ z`}stek>zu8QPp5hm_<4w}MhB`EWy7);5uG$WW?V8btI3Dl?#*z1Z-R_Jdf=D~tDB-hbbJg9bwPGR z6Kt`#m;9G2<~tZR!+B)=1qT05;QF1(Wy>LSrKw)Rab~6s4{yyFeD%T1I}pFhQw^5) zUvSUvMlD)zB12C_$~%{`Zl>m137RvyGOSUq)xj0} zNb=BSQeU@7|EP%H-OJw-D!cJ8z>Do;d!a%l zclRljm4Zm)tv>>h{L=f+uKQCVa!=!gi^2Q&{{#y^iiE3}9Q8jSgISJfHq>fmvdGn! z*)*l6KmpJ>=x(h-oJhXtQ==gLDL|9jv8?D-##reOq9mK-)gL+uu35w7JbIMmGlo9H z&yVB%kd?Ys4)BROd&u0kgb`*Ed}-h4SUMJbF49AMz?Fo&SBe2 z>o`p#Io!kHRkZ;vS5- z`n$C$-P#32W(yM5Xr3>|@pU;Uv*l#RJD=1SsKx(_IyeJ37kG^Put)r>s2ck6?{uU9 zWM1xENQkvipXy!>s_mbIWr+?&tsgz<_SaQI$3MRC%=eD33;t0Ku#&m}WNaf_)~L)A zJ7h@yGU+OzE9gT^uf5azq;T*&xyd| zrns8om4heeC%H@SyO1~IPI3WKX`d_fx0c6kUY{o#-0`tNnl|-t;U!+DW$U!WQ{Bg5 zw9IF}N4P}ktDl~?jr5T@3=@{FBP*XNY4w)}{F(>#3Lm2k*9gaxC3f5SVyi8LpAW+1 zruH7W+6INfq@mfNRg4T>`#!fQ_=?5DY^WeIu{ zCkP8z=kVnz)>UFItmyw6Qh46zNrA5ZNXs_zegwa66Bqe3lB z^9iy3p~xU4oDugvfb*adxG1VfOAwWRGz5F-h6U7uukJYp%d8s3Ef;o_?1XI2tJZqh zGa=D(w%5{+*bQ{mez+nD(-}$-4CZ2}!I$^ZhcV~3Pln^-S5vZi?(8dn_$o(OC=euq z&61ActWEA)hjxTMUUybE*iYPWJX&AY9er$LZOx^AJWqd!ytr!4B^Z zK+uWs`Qpy{5_}ZKcPX|pJ=lY$Ze(6st8Y@H4<#z}S4gT$g1et4!S)~5$j8!xo7YVQ zCH6@NrJ{;S@U+4w#m?XPdx}n)i41cg3QwzWDu`}^5c{W(@GnPULr^165>Mc|{gtq- z2I85W4ErZ|{Mb@S&QC((TU6uSl73)Y&n!<206SGAQC|v+yY24KJzXSh%lBnkjpW}S z$x3+0I`$sxPNGlMd91hBMADD>j;q(QkAafz*XNAlbZ-a2 z=F2(`gejReadLRtTzTV6(Mllma^sQXap!>3rY_60$G^_PzI>TT&3nbQtE@F7^Va}l zi>L}_F3F`oVaui$#}}5Grck3L2A2rtnc_!-@kg}S2x=FMSWyk9&igX!{fY4Numw#h za)8<^_|i*@Unkv9vO2um$>*$l;l9*Ym#t0u?_P2$2N5uuvyJ@MlhIbMzNsgFoj=xm z5e0m5ml!7M9~Uw8xf79Sj>phqS=UAgjz}i?i(S}^l>am&CQlbwsyYSW;|DLGAMUaF zb5{wSeAOeYOeE@6;I1egy6Au1cpXSVbqzJClR&cRz!z!Xw=i7mMIB~6$<#Jk-@uM< z=p5w*DV!u$guwn)Sy-4iB3mA#S9{j93U|R)c#SC9kmj$E$XKeeX***GX+=@;qow9? zo7u<<*YMa`TGg&y0D9i|I0?Qn?ZSK++X{x3Y*~KI!@N~~H1DD2Vp(ttHRo`NH1ii# zsUEc7C_nBxt@6JY?FI2A%7M?QT+p1KOqVk&=3Ppz=r_pZyi^-IYg*~drcap#ywMdq z)e7|U!_CnmdDyR(i)c?8Ndy`FEF2GFsd}s=Q!2mas7ltPQD~mS&RRayY&4AyC~6yL z+MMhqp+l~AQVdOh77w$f!)ChV%EU52-d zcgFWF8M(Fj=chLB>#kH@vCqA`k&9E~k#e??ot_zEyOoftu;b;vcL6cE9N@*4x9)ii zJ`XU#_i=^kt#IVRRxZf+;DD<&EOWTscqC=*oHjd*5w&b`h;N$q9&UoS;KJU<&h~h1 zk+x1vfe17hz>DWUqT9UTGz(V7orc*)DO{d!!^YVQG5Shbv%eCiG^Attbn{s}a-%#~IOdspNvR9BYbMUb<3A(tN|9LDQ`3`5_MA=LpeyZAzf0i9x zmsZ1HE-Q3|9^@y(8h$z{>I>808&1g1%ya);pv^pWN(k(~B#}*mi`5E)5H84H4)UA(NmAKV<@xRGm!JLQ#T4(5=&41NW zsA&)HnT+2F0t5ZKoS49nq&a0|A;TB2>$=;fTr@_c1PrZ#xiKi>m-{2!iE;GhqXS!E zuoVr=Z{hP_x>YM*_BGOAB}T=|b*S>Dh)wmeqJ?)oVRaF-xMa3>>m(f9V5lOcp-DdEDKn z^{zpdmsHvf7V{D1-U|(d`Hrz)`oQSW;RH5X?ekm)y}oYa-+VJ!1bPB)5KX9h68XuD z%2|5wDp?Pp=skVfHV7bKj2%!?YaDys2LoW4oNRmGF{6^LTbT-*sw6hl-2uU1a|jvU z`OtRYnAF_o(INkkfg?G`p73zdF7DcUW7h1LaE{R#E@I{tS;U7 z;gn>h%wyrx55j%Z@R&xExMtV4ws;KJN}@4u3`pdfMC|MAMU@`o@8fjIV-p7+k&i%m zj*+6R=*ESqW2lAcAO(*kIhSa_lIU5JtH_TJ2DtWYOD-6lScYQAvD9Vzv<~UWf7bq3 zLzf1fCR-1x$b(rDvF)!&;)Fr0C`XNVXO%{-Uw}MGFx#CzB`47AV-%>Opt9Sx!^g(wGqT;*<7M{x$>Zr@and|S`;LHspEXIaQ-5@WKbDhofIo2b z!YsqoVK}1f9uu?mvVhPDV%JHq&h;c~+Mo=Dj~%fMcheTRI_wi!CpI--CpyBJlWb3k zsf%|p2Ox`^6aZCtO_M}?@b{BIW#EmxAK2q2je>aH^(q<00d5%`&eNydk?H=3Lv!KS zsm3zbRdomRU#1j<>5Xj9hS#fTGN@9F{KN>>T#GMhzvZ8kRmpX}k6J@{jU~^B$kd7x zPfdhuMjZoTy=D#g8Cd$~HCwC~Ntnds*56I}1Ll1OHk2Kn<}Q`AmRSACx2r{y#kb%} z9W`I;Yh0l{ouc}n*~X6B5aC&$w)P@EkO-xP%M>v@Jy^=5jD;M&VV2@rl41n4^66>> zhmGuyC6#B^or6?RZN}zU_g;(k@D(9;8`~e-F?g9GKG+#{Xr_<~D3l?`%HCIa{X~`H zf0DNWxwUJ#7w2%nruhNKyqiwh3hL*(s|)~B6Kx@$xvx+O|`WIv1T@ zj~C*S%>%}HN1mqw7hQTA)p%3Moo@06;J_D?FL4BDOD-92qYmjdGyboerDb%muv2IE zI2%YFVNCqb7>>gVtsXn4DF{4?r_=Vag-igHxI-LBA*|JMxycV||nm3M^ z>Ga2*F~e-qX!yFa_s@J=c}-i zUNy%qe8oAJz9&^*0sP`6WLk<99vGdm7-u)w@b`9}mLz8>!LEA8k|kTO5VpE;@+ELI z`L3aQJpZ(4EAKV9UR=zp!L9-@xM+1-k6kcrGfI|KJ?Ml=Qd@Zz(P@#hbEFg^UVK3Q zvFX+_Llkf8(=0^5*Q=jutS0NLmZr{Od(4o1lB8}g7)HO&Vg;;6o?O!{Rr+s}|5@qu z3CJUsJtyH8o#$6aP!r_MsDbGR6`Y(>s!4|bBG=%akj&_-Z@o3_?OG1k>bJF+QM{K>GE%}J zWSh`TSc<1R?}};9{b-G{;5sj;`T$kNC=}q1D;7$V!A$5Y1!T=NoNKzXS0i(3k4+!^ z#l?1YJY#9f!e4v*HU9g*vqm=MUDFD)AIuXLj60XHDqXz_msv1hs=~b1>H)ejBR_13 zg)l^|B74A7oZJgZNqk~R01T(u3({icS+yfBl+9DR54|ugl5&W1GU_3(#bYG5|61{n z$3ax7uSS$uvbwLyx~s%w{gz+;Z_Uqt9kE+?hhZ_s5&Be-+^Tk5^Xaao7?TFgv8CK( zLcS(!Xt&g7F^NzieJ-74j5&9EXpyZvSw*a=7^P^-|j5V}pQ^ zWb7mvGKPv?{f7@hMeDJl<7N{@)Ru3)7UVX@@AoAEd(v2H0LKDJa*) zXRlPTF|_=q8ak)H?|sNSoZx1kU44jFG*-re?MC3mZqERNlyxcgzOSzgp&oCQuyOpp z?W3`4fTAxE)T3Jc7gb@H3S)Ug1*+^WUa(DJsB^dy!YDm>p-HeufcBx`04NXV%j}Uz zH=p@fA(x_wH76K!*cJ+G*rpMfK)tWM(gOMh*)OKP(+o6W+WD3TcwXY)@WI-Al>!`1 zS%sXvw>H_VY)82(+>;by9}iah49TxGZ$meiEn&YrdgKGTq1XC?{AFe$s-4%W5)E~c zG*M5m7#f`ek8$^@kWb`gZSruDz;jA10{J{@Df;gS2#{1B9kWgX@UhQK=yw7}AbI;B zO`kRq@m9w@t>Vf+bBG#sQGHTx;v>|ji#e^(4@xKqE>(n2iqsm>1=0wd^1D8V9^ZhJ zxpOc37RUi3BUITFO6Tv)#hxRFX?=}R%|h!rbzt%6Whr0^5_+8w6?U2#GUQ`VW_72u zjqQ!sGYO7dBu-*aVZ({AyhcDCqgjfgT1xi|Nm&-917%poGqSXAQ$r%J{Qb z8N)Qv!%%v0Hz(=>ra9un&}w`iGLSmzNT3Cj<;HTsHOXXww9s6x%yE@k0zHL8y)rH$Ed;Q=v-(zlY`@cv6A6fFP<%K2nA8sW~R=rdpxio-#76=^k~C=y$oH; zh&*&Is_)9yFQV@C^x6H2GUV zytDXB$+nynpQ>$UR0Llt1-4kZ4BEjeoKWQR`pU1h)%d-i$;db(h@rpb7oTzlnY*63EAs}vo(Et%Jv+z(Ne6RU^=aNn;BH{e_r@8`hk>eu<;!Mb*PM+^9iLc`In z59~FJHL;%QVih97iMu8c=&W+g$=Ck%)qFJvMX;fjjwt`6s=Y+2&F59#uzC$z$DC zrPT&qF8(CwR$)>j{&d7?%i5JLU$URqk2TdW{76Op(V;@zEMSL zy-1d!sZMLS(%jBK>Jt4rQjgb>_Muu7WhpA(jKJ=b|* zb5C^F5^oSplf%Y!VX_kQrn88w15P@evj*9ZYS0V%%n-wWX)AreG%l*x1!X@dYmFv{a)zNy$~Hy<)JlHK_S13q*Z=Dl$? zpo6j@1KU&zIXGL`mhBm$LSuxPNFoj=&)0@&1#r;a%y){lvq%+Zts~}a(U@|k(LPgl z9i}uHc-**u03#@*jt`aHpMQKrP9Gq95Z7XznP)S zo4vWaJErb6khb2HTl7o#__^W2#|vh!(voN_^Wc*>*Uex2T>ucJM3b2qEjTKkg;9zJ zF5dplLn}v3DhQX_GJ3!i}aFyKKqdlhuHSffGW9THRiIGB#|a#GYY6JQ8|V8Z#$HnrXVdDVY0!;S92&p`I?#R;zS zW-m}Gx-DZjduWXOAsP>Vft{IOxTqGTECRhp$Htk{SoUx@{4<^z8jr!MoDY zuZ!rJ#=LCtvqjyb>xi}~P}5;0K0CQmpE*$UqQFO(q({^pRC^Jn+F088#!n{a4Not% zsG{zU`Xijq0=2wnFags`S*-dNWmDsIa2Jk158HSO55F*%Dk92Q2M-lO2i>kN>ee6c z;@H&l6N3x9bkB%>@@e5cB41+a&Q~fG6jM%4N9TqBPj4+M*^J3ovnyOT_=#|X2D2gj z3D_D|fx!ga#WOLq_0Hb%L+bq$T;|WC!R&0~R`=fR!V$Iv0mDeUeX^t4FHp5@?c949`Z;k*&thnhXPvCy5%mqIRv&197DH(X!#KGMwnQNNO)10!4AY9zV+~6K}-B{ zAYl1odPTq)GN!7@HiM+;bW>iH;_h@agQ?j(x>?h7;nO&1N|YVlfxu?7>#PBjn~Yte zd$Ae5p-=1b;MtsQ_E)!u(}{$m&~{P!D}NSTi2(*O`>A&>x#_3aLn_~`+CsQ2Nt1pr z87slh3}N|}z`>=G#$#jAQxy@lflrP-++Vc9^i-o z*wZ~Pr@lPgArSC+_ILXtaB@k>%}+!{B(PI~qG<*uDT-_3U71er&|0(w_@3xLrP2*uHaUy7$w(7yc&q zgX9hBG1kKAkw@0G1-9sFdmC-1d6?r<#FiHc_M z9YNyxW$LeMzuaf|*$Q8gdtIEL(Pr1Tks}VZBdl&!C(38?21iLp=&3hann(MbXW%j1 z#wl9dPz|hu+LD_dvXDWowj5Ol6=cLfHUj*?aWeaDECPI;*!^kJ&d6l<#zi8S`}SK^ z!di?}REV)$(u4`!-vJA|%mubyaEh36NM4fsYbhnG2u3RF0dbnHR_cd|<0-391#gbVRcuX%PFdqM41Wr$Yo*Y&;%=qt_e?e5~x zURIE}27K%aIHE%{6HbyJ-v1V;6gxHN<+A58p5_T{drFPV^niDVT&4W`te6!o)>HR} zKYj20j`$dHTEU|sx8Vx&pMn&dkLwN5iYnoIhYd6F&YgLS+GTEJ2Aa{)r82~-(F$B! zdeuy>QBb$E4-WU*CP1f`3va-8Whh0-!Cz^;ODHGyes#ZL@ifCGQvOc%XVi35e1;Bq zB|%H&VzjjR!w4fzC9`k<)k|8crsG{Un~UmsmN3APNbk1O2Xj^-gUSfa;&>V$$J@9x zL@tZ9|DF#1IVn7b;t69bb{{D=Z?EMV741}q@In&GNoP}hWOy)tAhkhyAJv|Q9wYLk zux;New!3;i^q0)U*Ro|arHw@_#}`8n{-dA)aYK`yJ4&NH<0%`T*w{vOQRpse(A z&=1YD(YtK76h&PO0_4&kEC7N+at$8?>cYhk%3<#@(Q`j4B8$ZeHsrh_2CTj30TGZQq3e*OC z^pKv$Q`gut+@q7VNk0VWw2#2)hF3)C8UTS21QhSP=0@mc9U8^=(5C6iW92ET@D1^X&d?f(p(vKr{vR-t0>-j=H-_Qjz-q$?Q*i={sOy80ZyZ_WCriRlo?@TH3r$#aTRG|? zZ6ae{!#<=I_+{C}efcZvbM+upJ>Pz){HByjie4pKrok=D4SYQwGlUHum=PH&DZu?; z=-jDUSP`cbjp4n1Qn#XCDO^jJI~pG+XsV2+r=kA+6b#29?p}^{JAg$9ZhRcfR4Z84 zYzN^KhV>{FP6s{I{@V9mH#58P{C5<=mYqS`%|m6cKQz+~ekOcN z`bz(z@GgUVxj_I~6tN6_<_nZ-uLO@N&&e!=sjJ}l?-TeiGcY7lwKP^65 zcfbqP;Zdo_C8F6;ON29w89R^?Wn<}D_uEv{;W6!2(q!y5>e|ii*GXbUpYAc-{`v&i z3M&V%x}G`+QZf)9+pLd#+P#}A zYcN-~^r7aLP5wTcxJV#g!)pYwnmQk}joi3<7i(ldmHIgPU0kk&L8#i_{-}FPWF)js zmu##!9c}{{`nBq4aYZv~xBb}hN=8MxrnY+C2n0XEY2f@NQ1$mxlndt(142Dt;a(rY z6T-h`$4q z7_x*c180Sit1sjuUc=(7g5hI7+bhFVdG_tHO~0#t|7s(=m|mHw(rECDGG5P{vkZo| z1WWPj79;npXTtB2iiZ_gIx(-oU~Mxf5osk8SsP$Bg-WumgR3IpahyuN&NaPINIp^G zmXlTG=Y5D)1KI>h;F2cgcW8Ao-R@Kt1Ka9q4btl>cXOl|?WzUUs(EgAgP_dL$`YOV zur{7hJiQB`wpxc*a6Rn!dpgK~%$qKjn-tmR)|(3jT@UE=A%iU!je~ZH8+Zes7r8tO z+6_-v8%Er$4}ph(;J`%AR2%V1$PdTbD^gW-z8qM;W7-_34gGjar1;)6 z^&oe9LEOJhdKalfxY_OP%}Sm_)VKXHbAx^Uek2mPGnGKj{W z!gp*nQ-C^3FC^8zaht302}pp0!+ozZ|sx~oXIP&`$mbGxklc^FTZ^sf?kx5`mfo_f6TWwBOX-1CmeXve0(Zmkj z^eBMC&B(PJi(?6?VI`$mCF8QFyE{1_w+jmYWsP5A8fw{e+*-Z(C^)NIh(taKQqf$3^7E@ehu&c z06##$ztZ(k&%P^GvZp4EJHB_%`t_gv-eF@hcKF4+*RMbN;vHvipZTA+4Gi4&fqiJqtlNLz#Kekn+J%- zamleg?B4@qUp%^A5+0E_-ZScnNav1A9Lr(qz|flyY`OEh-7|eJ%#Pi=rswPW1wfs5 zeI@j}Z$7dA=)mJMFe|qGuS6lX-%vN+^@*)j`=Q@a+nshMi(ipa7Gu_gsQ0Ox>VX{% zuoHfSZpgVx46jNEuZo3RHIk>#*@2y`k*n;-Vx5bTOqb^nqNXMi= zLqIwu`}lx#B1#nbgcO+e$K{%AIGGHeE6cG!I+^6m`Mae+Kw@u)>s-I=i{6iZsFkzq zpYYuVbsz`LRk4u5rYB<7blk9?WL_{P<08y9V~3tPU>9}Py-C};S~_HQ*- z<04I3h_J1FUl=DZh1$4CxS(?O8xIVR$COpk(XXz1Xzoo>(nEz17iKq(>@n=03pzZ3 z3lsT=AsCOm@V%8TW;N3bqZ(z#nF-j_b}~0IpI~lbZe#w4`D5m@#AHgHIAg##Y~FPM zb#1H7(iOXBQ5)A?E?s%kK`iSvOIPi^9n1R4rK|TH!m_ny=_C8^z_NAa;`9+H*=QE8 z{}ag9m5Yrr)Zrbaq&;6QcK2m6r)%;I@F1gQD=$;;{Wbk?&*pOR%B$gb1f3bZWoxsH z2f5bHvb9q#jzOy}TcLJWxp>n){B^?9Iw8VmpmxvAPIMq@9ErNC#3Ix}d~wAd_?MtU3G$X|n&N`ghAH{P#nm**~fN z{Yz^i5sfAit=mYm{nLfNK@zrqR{isij*?BIv)mzbU45i49f_p-Tk0>BT4$cW3*I|< zES%tz+3x)G3ClhH3xBOIV)|x8?b1y7uMEU-AK}NTk6~J+Q3?vzAxoJ&Nu6GmV zbX&6cS*r&6jR*SuhGHMg$Jgq@v99ic5hvD6#gLpbQ`C5Q!E&gFYNMPG(`Zhs(p`@F zdUa6s9B~*iJYTu^z7AHE-^hM^YATgKc=w|_&Za@W!LJ;YqUp1_ZPVAL^0Rk8w*3uR zHQpGyZTD2NXB8)K!^g&<#3g8XjT13Yl5|bl%#8Z8{q5R3C6RK{5v{mM;>e$m4Ri$9k^XX&0yaUHB*ABIeAT@w2P*Ih+5>+P)MtE}F|AL_WsY(ten zgb1a!99Ta*yCr3yJaOn1`zMc`w14`_A*V7#B?)e0(2KPwR~YPG(n@2f{*%_5k4E#o z8fi5!d-rdxUAwH`Kz*etUKi6;U-#!c!`(p7+ff}Ctf=GS7y=@Gkrr;O+2(8!6>y|? zlg2)#k>>er+Gz7GND$iwqSL&K>O>yk2{-MW;V=2j24z#?RgKzQ<+~YdRh#D8Pjzdy zi-5GcQ`@A$vq>}i7?p`wz^y~{`(|n8I;Iq>XwvG-rFtKAO~=XWFsb8uh6a|ZFI)9A zh!7eE;wgN6(6J|7;XPfegc6nDrZFI~9ra%2={mI$NGx5<%0lQ;>M{vTlFyMQop20} z4Op~l0~Q5-t09yiM?!HUM2;jv`EyV4V%^;Q2Hkvz{Wtb&ddInZC}AJQdi$_bU+;1K zt|vtvhw)CPdgdnupJ4wSB*BM3REf^r*psp+HH|!;>S0d_0bwy71;!liWcpz*y_+fZ z(lgL3hMXA6VARqujYnNion&1AiOrNf?=D;2GM?61>&v*Gp`Z5)``^05ap*Q>tK<2i zSo4n6_yez?F?yfx63(1p<|Kor98 zS-KOSrQ#K!Q6a4 zZ=I174ZPeSu&+Vs69zjxXkrK-bC5kYxRQn{8LGK=)Bs^B&=mIE5e~P`e>2qfxExS1 zjGmikgW<5p^|tIkUvI8kXQFv}<+rMh|58_Hi_mV#UNTh(}NF{ zep_=1g>kx}5gqpy7k-0J#}GKx{*dR)!SkK5;ht3eb^pPq)tc|vbMQkBaZ0s!Z-$cH z(Ye>zx7F5pL2W}_-n&0`Y4rOjI#X(@>dalQV*EzbnfqKoy6c)M0o>`i?u83wVO@Cq z=Gn8RKT7)4mWWE$>H+in-!}tM`vo-;3EJNxQz`bX6jrPD3(?fPl)@^N^f`Pm*~Is7 zGtiHwiWlzUF^0Pei3O9*3-`>5K_)yZimzxR{kZWxA6-#-2m5*?NCtGDSw3q9bo-mo zzo7k1=pXhMTVLRdvlyl8wnhI7zgcQ*ZbhauP%Z_i6M7(op8*MI^s3h;tKJ#y7sepH zthihiZ;jZcznX{67#Bt18aDY+ihXCyVaF5W?6H@=aQ5igi~TPiBRAO(xIA-jv*YuY z>%`p7C1(HuW*>~xiEtk(mqK0|n}XZf3-7?xp`p07})0=vY{Ai#NAQnhkmUS zJ=1|OqQ1%Kpl>OOE3>o@WD%EGO278d=HPJ*Gv2 zJ)hkw2|^7UXb#ngtLi0zOC@=h*JBe~$6GwAM}2|&V`C&6**|{%za@sV5qK|oaNn)D zZFi3GS;?ok)SzFKL=NK) z)fJapJQLm#twLLy%f)%GMg^ zRGHe*Qs)8F3S?1TT5OT=AP_%9oADN#!|*$-6xBxfy~=w!m0ugB3Yo1NyvpfinKdo% z^O@QltjnD4)-m;m;xy$K)G@iL68b&PR6H{`D9xX}nXIwDL!yQ2?;0Kb3CCdal8c=;yAWUgQs1^ICnws@9zle~dCCOpe=4sJ~1R%tkD zgGi{{RA@{ACmcl(qXhN)v#wrgop| zcb6cB)Knvv$eBEg-yBMsyr*6$c^W)Cn@U9bG!JKXCc}D!Q)Qv6kV+L+c_dX$hS@|H zy~W^xSPKmvdP^!9>Cptv%qE(2t#SuBsig;Fv4M1Rb9x{)dL#SQaI}@@>I6>lNwIW_ z_i&-65Eo6bl27KjHG^GsoE#EDY1QLz5W=lGUn{XbWl7T*H1*0nzj`nyU{f^}^whJg z*dUCB+H_tBuwuQC%&!FTQ&l)gYmivQCv#k9x9RcJvVLE-Lu9!SJh@)MyHfd;Ea$H@ zqI&eg#@m?1Wi zTM0mgdy-ieCgQp(*kXfe?Z$bFmw>HSTLWB^7Uno38RI!`Fu;kh7q^5YwXsfJsfwD+ zvbmw2T3!rGvC>ohRRuaUJGG568khhnrOn_TFYC6vU`z z0P%pTHS?URHF2RR$452{gJi_9?O`sYHL`p(ruiCGr)k(9)HI$AHHSI1o#i7N=Uz;Y ztm{m#TjvUzeF(jN$3~XwAYwqbK7nzAtYo>Wix^+fML6HI%aw~);$bapq@{RrBOXbt z^p;i)4Pz>&obKuCUrVWfahAgH@dr6F2E%S>@FTl5QM`+m&KnK|doIsZRQ?_y6nnET#ke?~-eXta^gFCrOf24rDHBh1Fx zi+Y=h)aKn3tUVohm#n{Vfpot6;DhfLe|*8SPJZGWR-b6J(6p&Wkm^OlV=qvTGG<0q zzeP@5f1H`w_rhZayUQ)GW}31YMW1!%#X)(U=ds`FethVibCZ+j-Z?b?*XJe~dVeb@ zOgsy%Q}6`)g6W?xy@=ErX8*TH_N>pJeq-OMpQq7&kHF%y0LI5U8l{<3#TwqO$)2F8iKBwuggYH;CLF!k$qyn&@b&IfB90+zJL2bvwF=K-E4unntk{(+F0bw z071sX^3pFZy>Yb+Hr5r3qCFpc>B|4Ydxp8ik>Rw(pBqja(As)*&3f3r)T{f=U*R(r zxW!`&52O8`fn^?De*79;wM(PMxe)-|&J;m<7G3@m0Y9f}Q) ztWV!^v;-%X8%k>4jr;kF23yCf4LE&N$hq!CZF!u}HSR>eK_NdmbvF+D-r3I!uX=)O z$3K4x&TQlt>FRwaVfC=ESX+PKkqSkpjK&x3sVWaTL?9$7@Da3r_;-+5IN;+v~ZFjWkk+YW0Jbn?rkYWcE~9?x?@ab zS;5CP`RK7DPoxGPPo+++D?S=Z{bHpIbL#R+l1M#r^2tnK*PXo-C3|eE9VX5pt3CCB zEdh6TL!;uhdAmHci8i4A-R5#l`dlskPA_$ZIv!eMl0>V=A`kdnYX_4Nx0=}(i|_8F zs%)W5!qw&S2h)A=LxJ&q15TS@ZCi6fUKwaYkG)^=NJiga97zs0Da_&H($=R8m?wrE?@fKude(J?5@i0Xv6zE`m2|IQGDYcaMKsKMT=ksVKDu>5$|c`7JaQP7C*Y-;>4!SAW88n znr!Xh7Uy{@PqDFu@jwGAv|+PWLRO7rN!4ev3YKLrMT3h-B!GR z+uZgY9~YIqEb8#@|MU^)=0kig+K+xmgj`1w{m$|i%{FP}PLPC$F{NoPdI!?|y`iBg z*w@c5x|-JB1*@~dMS|VBccIkzcSgODj;Ob@G&8IDzcdS>qFI-P7c<@Oi2y0TOhR8!`TnrWe*x4v>l10kc z9Y#m*NcXliid-kJk)u1u)I+k`?F>#JQE*Ah3ab+J&}K~(8bB0$e$__}9zXd+Ca`;| z4+&7SHC|`t9CRGXRv>_6jEuNqAPBwj2Lj`Jll4}MHIND|9Sx;SlHKYRcfHvPW)Yi9n={4puX#UYYEDXxD_>J-O>}V&auknKk1> z)Y92{w`5=XLwfCa>bYpr)j)-)kjpg?jnB+SBYS2>1c%2{C#;{@qsHcE;&kZIZ_KOy zzL6E~;Xc1Q|BXkdUpSVgm!1(tYK}@Ddto~H@I5PBOW&n}t`+wj8`$yLbxw6~#O`*B z!-J}G-NJIdA#)CMWQB-MEhZGq>L6x+sn#;8v@Ew;>{TanoCTAHe_{U?#GSVh8;OTXJ}$YC3-^b^ zP}TZE)(=y*8!)kuUh^r8moX`A2Y^A-ZpPHif8Ikgj_)=JR`ZZ+kjA1=Ac zK0CVqozZA)bTk$nWrUh<8+q5aSqr&OVBa$Gk&(EMt9_fbTsRrs>0|6~vcfHXoBed@ z+R^JgYY}RwH(b1NsRvfcW63SCNO2Ue|M0PsD}0=XH$v8C()7MY!eJeu4#Xf4Vpk{WAs!@y?fLfiPfr*9pO?4zK+qcC1?RS$R&PyS4euXwN>cKOE7(f&3SG1vV<}msy5+E)*aTEk`%LzJIGTcya@0l~FIwC#;8QAyN zBTPHlvL-EL|J=QI9i7A8@Z3TI*&Rqe-esKVUR9u}FmP zHJGi)&@vVOgp!6wIzv0WqT^oHt>7BU2AJrcG;6XXrnyAqW^8Ya?3TE&}y zB36*%4Im9K&M4?6y`^|!;9-%MBm4m}f=W>|vvjEp8R6U7Sph-vD#`1p;;$Wzlw3#k zK~PY}Azi=Dh4>9+)CiN4n-Cq#$Pwf2W~%saCG3c$FsGv>M+RS5v^$z8sg5*WFLK=I zO?{n1>+9-E^D>%mu{ns7D8o2vdu6Gwa{`n*AIo`~G5L9UKIV448X1vF(kewtQ1+-) zpjShq8s+0i9(pwc=Yd{LcaD5Jm>g&?c93tQmk&c3P=lY;tu1{Y^?tf@(EFhhygmn? zTaJT*@4186LTn>W5cw#4(UxF#D-LE5!+ClOjz>2`Lzu%2VXTlH<6v|{!(G042o5*f ztNr<*W>_84L&F(LBE1m}g?ED^x{%wBn#Rx=662~^e|i%{>)s8tds4>~wk)zJP&P|>RP8>};6jSj!ZA~AY2o^swDzxx5$#1N$p(81Ur5vNLPZytX zq}C;^d!}E%3149=@g$L-Da`?FDuDjcU&tr>q12OW@mzM!w^CJ0$TyKfRz`}+Jvf&c zjXlWV?!qIGmWd67WPqO(1l>N@vjL4bBjd4Hu94)0*LbVwiuX@zO3Nm6$O?zrW>7UX z2D>2KIve40Euq_uP^k9sBu?3A^C~h>3Tp7fZOBN23e*(S66myy^;N8-LiA?T3affl zsg*-j@z3ZQZ`;@34g?t5VmJB+`?_VRUqXL!ci-BTMp2-dfdBPNiqGf_G(;1T)gf9^ zjEd|Z%g6zWri*Wm?!RUDawzv7oVHjmek<`%hqzMo&B~Om$!7sfV4=0iM#-~2F<@68 z?!R);&Lw>Yb1WI7Sy5o!qw6|qSl;03cJ2QdkM8FGoJZGxJ04v>XhV)zwwcd0z~lmp zLqs$-U8UuBvgwwyqO^n$EskCK7@O{l(N6wW>=((8M6u2=yODW*z#@38Wr*J1fkNioZ@sc_uZ32J{bY4Se|}iUl0n1hx(8 z*Fh!0@YG(-?+?JaG#Y}X25Z>G+H1v?PA979HJ((43XCeqD)3E&DA$1G@EJv>iZ(E` z*?<;8m2WWM8J|5oH1a1S?j5hr(ek*D^2AKmDwZW{fW&6NCl9$24@G^Wipj=`0jpKw zIj6~Gr;Ig1jlskkE$%yHd9YcOtinp`j<1|Q)f>7yv&P{x(GqG54tdz^UOPHgi6Jxu zGoU!8!c)k5dXOj*o>u58hl3CXPH0Mg)ZU5peDK?0*EnwKP#Bs8Z?-0TX)!xB6G-6w^pD8{>co$SV$Nse31QVeTigpG5%mC+{# zkNn{47kVAhpqqX?dT7st0}zSzG*jntv%+1o8P?Mi3EHiz_{ZNFXXU>2eSv6~fpuFM zp7RBKW~D#iR9%5Tc*5BboZRCPA7`tIW8wi$h;xx`02iRvN z)*6`kgE{s33RnYCn=5xBfwK`f%ONZBS#vB~Eo6;I+(3iLnQgJyClK63t4Ut^ILpm> z@_Xd>u4g_@cJn3jy`qnPsbb#TLd*bC4z?*aYXx|BnYaq0n{EbH$mZKC|I0)rC0Xh$ z4Sa1SU$6$qttAkE0$iED0e=)Dx63Botwz8Vs-EX$Zm4j?y-x9sE4}yloZTjxHB?p6 zKF%LgxE4VSnv5aQ!8&twa5{+u-$jYK+zzN28r}Mmf_eimI!LpPS|Uyx=x*t#)pu)t~TlA%WUivTGg`a7K2P z#151ADqg46#2I%SOB4!XszD(BKHzt(}R{kbx7bIhA*r+^Tct zn3LgyW1QerOrkfE8n*c_eo*|yqdzDXJi9_2*c^mjPN z963k2S?Mo0WR4gNk~(2xEd|bU{R4<8)B#8UgZ(SO*Bl`>AWd{H@gVUz;?IeE2)-^} z$li+-(gFy}!)kV8A^S);djQPu2MWOQuyzRPJa+WWC$X4ooRFhP%rk{-hRf|kYx9Nd zJeNCy))orc1rBf%K|%jL)Cpupf&Y0uf9cbTz zkaMg>zX={<*mCzm#uUFnXIFrgh5ceWEs(OW$yJqor68^j76XrUP#Goj8j~zS({5saPKxL6TEL z8!aY7_dS#2q0IlBoc!uUFf(yaHyZ7X$Wo<7)}8oG@#VjIr})yZPJFcR)-U%Aefg=A zv#UF2PK>6%oKBxlU-7`>t2wH z7$ka#Jw!f$bKeR85n2UQH4unhF+yb`(+}^`lt}v*HUlRwjZf zI2Z0g)mqn#gYAi2RTpT&XlS?@_x48oe3?+TB>B=vt} zrX6C_c~^io?$7`1gxiOX(PV()$lw1ro_30j=iLFybh-FOar&2T|1T=<;_1y$htJD) zkuqHFh$m26+e}&YGO|mqW~(k=dNZKyuFCq+{*{+=wP?TbGVv;1WvpGPmL^!f0$Z*A z@^*>Os6^v!(U|Lig>6~Uxm8PyO1d_U$MKV5fsM?+SobA#FD3R`|AjHS)wRk;>Cye? z?0i)o1{y&5j#oYUb=u8c&v5Q4>Wfhy^lH8+sg~ESkPnLik$SIpbhLK~nSNqX(_lt1 z<=?}wyh0@a@aB52c18KhDDH-c?xZtPMjk0#>gLh%MQ=SnNj1d^04} zA_>xF_Cb(P3p7!75!@Tti%E4v;Zu?Ez$3G1vXA`rL6ZLHhamyhPrR}ZqX@o-+k+~p^=MkeRq!f)sK6(4D3HWGTB%BqVbMM zWYkzZ-8-55%`Lm`n5c?<1K6 zrqd*F!(nWSRXA%&RDtEUi33N&0FJu@;N3MroZ*QYPw&@1YSHEibsTCnxeoSfHhdXv zEYi9vi$B}JEvg-1i$9MxE9UReKJ-JpS{2sOYDcLp-L$3gVm0+3k+%|27=;JisJrfu zWdoqq1CNrf9QlMw5aP`7h^gT23Y%G_TpOJ780k=udeb2{?fAVhZ#6S}=9ST*{Mnt1 zfBfVuy(3xl3k#XdaZAyk-0{y|dSEyC#jPnph>TdQWOw=- z-~0KI@u%)fB=$Zze)yN)e|;pid2ILYvB@==H^2LX{n4#MK7VRP-S__YzV$|GtJO*l zMXVLJL*# zB(Z&obrIB=iKkDCQr(-3MKJkS2&;PHLWpUtlZD?uC9ZJ#n2@l#dzIh{m@ESG2GY|X ze_SLR9d9s##pHJjtGeTs5aV-5_EWzv$c`3$NQn2uEbdm5U}4^LG*aD?c6+a?|+C}Jo31qtb5AbAI##+l)>TVmN=!eY~BPkat`IQcwXeGIhl`-MDPx2J;Hv|@6*973X2 zl?HM@GF0q1HWGUg|4X4H;pMF6X8CtUlB}>Gn^+zf9o3HBG{lj(#m|usgf_!?JrVvk z>tbakHhnaee(d?e4%1|IQcd)Cyj;w_BzfF6 zPqZSAWI~H0sk%9iq&yWK*&d|izKj~m^vdz}_8218PDzAJ4r4il#Al+q z)kq)piQyxa@`J1`^8Y0AevqG5Y+;Ru7rh((NPZMGJ5k7OdKjr!ok0+#Ll{|ocQ9+d zMS>taE?t0tD)4FESIFPTf&|?+k0j_m4gfo{M+(^^9MI@gNKmc*$|fv9<84``Ej!NP z7!rlcZ8BWF#Qpgj-Ei>Il{GJe*%WoZF`jeMl%ff7?&e=;=)vmp1en7<}F!Cy2xz5b2Z z;1sehBrTm2NLt!cX^5)I_VC$cEPF`E6PqXD77TyU;aV|$5RUB@7TLPH@4FFE;8EL_ zGktG(if*XsB}{}iG79i9rQmYAS{W%~E5#G5yxexfw^U+ugM+pvS_4P9VRj;kARqXg z=vGp*J?Y-MnmTbD2@fZ@o#a#~l?oLf?LK<^v2^O_bWD+v=zJUG=x~1rk_(d~ZuQ6% zR4CnF`Kz z#`a~@b=Q>%R_pKlT`~&GJUUt-8t5YU zK_^s*(r7G?ZVzh`k{VNAqtqlvyJG!`^oG$pZskB_`=lm(aKq>=Qe$`!qG!Tua67+` z&#erhwm&B<4w^@XL3|c$=y?66yN=+As`ZZ`VG6{u^ZZ3O(cC_!McZZ#v0VKobl#nJ z-8~DtcJX=J_B|D>D|RtrSvKMAzz$LxTWrhju4M^m({(Zx4p^ONlRB2e?(rO#-mBnP zi?XSYM5PpsRVgjY-Fh$T);FPUJsAHqbn8uxigZ&zlr{<+zD>}RN8*)!)aBRS2zsKr zJ0iW*a-pJE%W)(xL`hz@7g*4dWb$>r*hU^tQRA;EZ~`(Ib#A?6LSBq4R&qNC1k6wn2+NtGR(2>!$c~Kei<7_7tv;5!4Y2S^{s-foNyGuJlL=i zErVmCYb2XCfv5ddHtcd2?6HZBrc?;&GpGx0Y)b7L4$Q9(#!-6@t4NKZg4-j|V;`cV zNWT;s8$lgyZ$#~(Og<5H&R)+DXLOiD{R)rT`O?uFo%3pgfv#xRgXvxe`(GMqD#xc$ zG@e8~XgrZ#DrR2>t?V{~P^#+YL5SL^sdjC*V!BuGCj~1p-L-CAzJcj3+m<2Tg1?(T z3Ba>4f_O)eTn0do!WO`2-xizHO8&DoW*f3vKcr>>D}U*k53SZAYnQ!fzb(Mqo2#rv zyLQHhiff0<_n~%q(SGaql~JDEI5_K8%=*gj(~wua8X%G4{!b{P?5c!Xj~jg`AnGU> z8638yPk^xdz}G-+`_M|Fw~UJ9&(KOyw5~#5K-xZBdfL@;+s{0>{9&kkR>7kD$;7SS z*>~eRZ&Q!{8{g^I;LzK!RTFgoCpGEDHMty%hmqm6&;6vD)LyV*r_1;6)>XE3LJ4sq#G!Dpat+o;W415N1{Oz)B`=B=%F4LnWsuG zkd#G5duK$6ict|>m%$1AVbCj-cIcQPX)v-12iSNO$efHa_FmG3=)lo^L62d)5wVxT1rgCEQ}MfcWxbWLwaa=h z<0tiDwAtkCfndsriasbvFqM8f+ZdY&elWe&E-Rq4>BS~SL?uQ7`JTWxcFNuZgZ? z^rD%vHn}K$1duyXdl9{iixh1lqmP&=vE8Pi``Gm&6tf#xB&?`|JoW=pdj100^n+u^ zeo*|o3(ptd|G}|KG|e+Wc}}wwT|?89kw#XMXksAkt(IaaqmE+rXx+u2feW$>1B{`L zr&yY!Yth;0JgW^|&j<|dHXbvo?liYgvY77>I~6@pT5u zLYu6##2DyW9Y+hiF<`2u>p2rVk)lj(3`esDg|gUbLzR_gYzCI%^hlFr&`ZEg;GY@2 zEQ=n^T3877F`D!OBg1#l+8KgL2v(Z}orM-G##*D;Dl$e&q&Yi9Gftq~Hi)#Dra8)J zL6z(BKPtr4jZw8elv7`-k9 z2qK)GCTrnp^btS^Z)Pb!g-Xa`^)p6PVn*~tJNihbma!OW}0li{9MYXf2?O6P@fi^%D*l00;+5t`L={lO>DFZ9H9Te4|LpvNREa-Jv zu8X5goP}XUgNfp70>zr?6=p`L5g1c7dJ|Lxv@b@pRY0w71&men$~?!gMouw{Eh1`y zsE`@H7JUzmO4!8GHlz(Q{(9Q#wKA-kGH^8Qj zP?(^-+Q?fC=o@qfmW7Y3W}t*vriMZd3JM1j9HH&A4s;Ohs7LPwl|uuU&yrIZQ9eM)v zF{t$53#!q_!Ukb`evQ53*dO27omjdM>`w;8Xh?b!*$r*MMmg{+DUME0bZyNoj12Z)_{G_0r_SG> z;Fta=7!*U%9?!D2|8cHmm535?Km)@}U>!K$t_ssFw__Y7q!}YSx2pi8iVzXL8Zeb| zp%`Wp&(*br!}&-xSiKPd@a7uB;avCsFP?R>gtiC&0&WH~bzQ|I)VE)!KG6N-x`R}y zi%TP12W-r!DjV_c#LkvEm_j2WL(PzXeM(i@Pfj!OY?={o^Qvj0LP zm%bxb<>93z`_gx={|p`axhSD7IU-i@9E*e>)kPfgb8Ju#hC+5#Fsl}Fq!|@71UM9O z-j!$-H84r51sBBS=Upo?B@IAL*M+kyHP>|%13U&uXp?zw0M798=!{leH@WteNFPRG z12c?)C{l-w=9m@&Au$!CK1we9_-XZI=S%3&DYF3y|7$!gf|5EoZF#R{y%-;9zEyvZfn zYV=jTXuFJ&ACfPS_u7hfUM7tlQ&+BN7N#q4wV8rh2O`2sl# z_Xs(x%lKv!xKH^M@c>}KY{c?J!-jXH>|2Ms`+j%mqEwx3TF=#vOB}M2T?OXks?H2OE_CDB? z;d6-r^m{;9OpZ<6i_PFh)Npce82D1v?h=^>>dbC9>0v?(J0DFr7utfEip$=cn@_8V z{j@%9h0L0k58aY7NPi6&h`hB5!NjTZT9ZZCnonK?|)`u z;+gxC_ijl%+9R&C2ySCy*vQ%H#gAT;75YQk;%g2>(TxKBbXXYZCvrIf<-re zMu>MRt~*!3A$V47+NE^Hg);`5?fNgt}}kafF1h|RQoj=nYH z*TK&18PusgfSSVgMqXG9b#^CkHFwUUYF@V;RkM%JfhRA!Psn-q;DEtgvj_b;g=OYg zZ79=_zV#YKa5-al1?9#pG@UmhmAt?PURAn?ETdXOq!L6a;qYD+&vSNyZw~dSN)x^z zs?f>Ib8&;yfs_VIa4bL@jZQfv$-Mz5&e$3A4^B@zGGFc~ez!Y8CDy{m zb8#}*ofw!uKaqKMwZU0usbvIo3uBeh+0@=NxV5P>?#xG0{y1-p#QZd>()nZ}Zg4p2 zjY2KbvK#V;RB4vLxwjBG4<=uxyU=7jHTDbYQ7WMS4xE=u|tpI)-B3Fya z6&&T#UluB{5);Q(j!+Md?dzACL*oY$`!@=k4m~kG^YXEwdU5{r(85bwuQQ{kcXyK~ zQ%C1goNsFvMBxpN9G~eNI`;BRY-ce3caLs;XLW>=Dx3)yh3Z!UFW#$)0cCJ+N;^#%a?xhLV5RbF8kTbxi%9-6fFkZ!WRExJ6?uh zd8sCU#fts<32w13(Tn!?!!nPS6^{JASRP$kv7rdP= zbM-q8Vu%01oxJcW$Bfp^Z2^ycHLwUC{T%8G9^)?_d*q~sqw$2Wxb`#B0`5f~*b7ki z!@xYAt>Rx@J9zZi!dbZVi%;>wMMKSru4mv9j?bGOISD6i5ngSSJfG9D5&rrir=vuHpL~pT* zVS6d4BBCL~+r_9zDx|20=y}Rb!O9{TB_~e3G+ryD>x`0Tg<(8*dh+Pjv6oM6)=`5aXW60%q%>`u%&lOytK6-h{cQNz) zLfWxbG$JESavPcSi5JJW?oTf~pJ7FI1XcV{dZgFK7|3eYNYMe8Uo1L{PSNiQARCB9 zW*+&<2s#t)vY);#MnXQ5OQji64f$c^+6*$@LPJx2u)5GM`KV*%jFWoZT{IngQ+Cyv zJb`R!cI>(05jXjv7Qcz-$QqGd6e3m;-AJ~yjOcIyf|n(%*TxG#Bf}LIgIvVm2Lel< z7RA|vr3;-TX^L!XA=|1^$u@*bA)N}&$pLKJ)gV(iKwiZY&$(XEZ6&0h2V*&975a^X zPaAkG6{M@=IKXVJg+UETgOyn+M#F0kw z9e03JZ0HA>8`s~E0!u%Y0_VuLZSu3le-5~duQ$F+9;BWx{w%Pf_)Y0ua)EkN8Wz!| zjRE&ZhMIu;S^>JU9|!i3p1^qH1u|58-5ogh?zM5WGz1B= z?hX|4{s9=u{at|GthvFpkrs!d#ic-@Kyhc$0*e)AaSAN%4hxH0 zaV_q}inF-87I!c1?heO4m&;vpzZa9w%#+NE$w;2D@6&Q0008SS$DF<)jB|#AzRsdj6V< zl-FCH?_bhezbN^V?W{0C^XOUBOmh(N6KzDYFd8%CUmL9}{XTj87`g1{=A;u&$I`8j zRz*|7Sw6o&%)+9RguFs zrLc9R#{hckKqL3W?_Z2D1%XHXca`>>gD`S~Q}ubt#O<$NjcI;)%M4_7 zwy?lW8Z-+97u^~ysMZ?`u5|opTjw;_HSIwX@gwLT;2~t>>v?Ui^AQD)cExzP0HnK* z=cZ0OQ%xsdMW}2m|5TpHwPA`?s6V3@(|^FBnZ-#9&FFEZZsz&(N!_@FO0rAW*F2Hy zz{EiAt8qPY^;G^9s>nlx9v_DOnWf^4rJa=3znkd( zE$F?D_?6uP9nEVihkuyLtin{Yl2+Xws5|mwbXAZEEr1PbE7}JucKD z+4lo*m`3O~9P2M+_CHA3+LICct4>&qF|m!_O$(4x-EgT@`8n;cSY?>NkqiIK%+3Hwb6~q4E)2jLAMvC$S{)d0&20rT5!-v?%m@?PNtIR zf#AS}-0Pyu+$54w^$;`kq_=Hhylp_t6hzCxGM!v}GeR(Sbrti=&nda0_O+0?Y}i6H z+d)~X<~Qsdhq}FdtCv>kXT$=iq!vCFNe2Qei{&w(B{fFvSE`o&SmheyAx4S;D<6*w zhL7^8)!yGb={y!4ud)El<{XemnxJ}5P#(dnVNX}nG^g%NuT?riy(D@Cm@2T@%w2eJAN0+!o=8YzXgX6FM_ZapqwcwZ|Frpjtq320Y}p zlqS7?%plOMZ80kg)_s5hVcEBzEzjQ@5S5D8k9Mb-I~>oMSzm5VJ$Al7volJK&9m1U z+t!`5=LSITCry^FnY1N-Ehnl9BJpvVx24Me7B8E-F|r!$X6At!qojG=cMn0LyO=!) zqTkoT**eHOViT({wCKKt%UM)46v_uL)WQS>$iavcUNw6Qzm|{A83(zokeSN<98CA$ zfDZ?S5yks6{+P%-NvhgZdf|mfg)jbuMq}3$jI3GjOj zaMR-?9uQ4$c2mxwjMPUI<>IhA3etN!Q`_-u@iS@2yvps>_j(BpKfgZ`JKXA|0R&^< zHuVzOfEjYT&9{hC2{H;iIH!De|E1(;j}WHqBt1hQYKXJ{PP_h9NE?Mw^MK zBg?7s#$rXz!9lNO<5kVo9OF$@*5%qWCo9ru3G^&hdhf~<8lymh3Uf23S{W38rO6}O zPdFQ>mBlwur8}?D}m8J$>Lzn;i-=9fsOg;}&9E$<&g0GuWcT2wgPC}D!uIb+_ zn|B^xQKTraOnD9Ku#Npm(A{Z*p&S=$%o#lo(3(o3s5tXL={3|}Vg~a2UDp_(BP|6q zqJ9h{_g%haxaG1&W>MpW4)*58^BQ1CJn4^sE4ZH;%76nHtdiOt^M zSCxJwz(Bs;Ix#gG2>BpTDXApytuSGf1X->h!4)4yRQEdI<`$ku4F-27U76^LTprUO zO96Ur^8=ti5q9AJ1|Z9=VSd^jpeK)&4tWHO+EhF{3C8TMFkRa-FN^yaF^m3FJlQSw zF+Z#B^*9zb*@^WF^Q_?C&>jSS+w3ATmA|s=+jsqH=xy8zMyon1L|agF=txBg${Yv6 z=eeAIF?1AuE~&80@CG1K6w(Tuz2rlI|E zHwP<>5XKt1jR_R0IzvNiW>H<2!($zp+*#S3nE8>K->FJ8(yzg?IvAJaL`BYsuf;P{ zdb}--YBmbGHVOvem8(S{om$Pg`Nd#Ho8pKYXuQqSAgDn8?Uwsejk1EXS=}T;uch~I z+e<-pmKm|~o3k@4=$37_*TajI{?bk7$ zAayiGCNCZmlBcVW6DPMqH@L+m)0=+JpG7GA`sY}{$qnK2@=wumwkv-u+Xpgd8>;IK ze*GZWRXZNAxm3sL|#U!1lyW2oSqN^35KT)dOUK21Xq&iS6oF@|dW@0=Pi@iC!|BabKGXXnP*u<=X%82PD#Zvu@O8 z6?9;!Tw6w+YhuiTdC*>ED`pdB9-Q(Um`?|s%S8;95!~^U+es|G{$l`>+zPRd&+VrV zG{qw3h$3H2E-qcne`T0`#Op@&arC4TvVW3r@LYein3``BXWZQpG?Ho0pJ#6{Q^CLr zj;n69?aV^^Y^q9e5O90j68$oOaj(q*4F54vKPnG(h6SZrx(Ozy%DK4#^ORoqa>(~D zUt&A0&|%IUK>pl8cJ4pcGtap`EgHmtD|4=xsG)sCddt_B)6?gPXq4Yv!W#mh&`;p7 zd3es@;TEJR{j4y#c-%Gs z*>#r=IPu5AqUA7i;dp4)DRd~oLYq!sw7c-ftmh+-)#t_m%!?3}f!y9E!7P+C5W#iB zYtWFzgsRn=vGD!4ng-;ltt}Mw;w=Uql4|J0OQ;@RwOKn)>|J-zxrPcL3OKWp64K6l z%-$#ule)ng9UN?ingMlJ+^&&T-=6K=wyvD!h{UCM83#x-stCgt6p%SD0|t>#w2VFm zKPg5loXXuIA&SRKou)uH%6$Q~x0;RxOANriW^uPGAUXbai2UIWHTvT$`JhD9ScTmQ zF}craYsTv93x{H3!6l=#73urH?nT@k6E2jKs0pgAYaR=VK>%Yzk~WtcN^w07E_9=t zjPLWC3c2{q3<4QjT>;UZNL2|u#sjzp5Yt1j^N!9DU`kCHtb{}VQ-O4wFd@;t+h)+< zD-~yqbYM;z4Xzr7d-zu^2}~V%$yr!rl8uVQ&bF*RWnbNNMsMn{AE0ZlKHx-*rN_${+HxJe+-SFpz}gL~vvP+h^u&4}TAnP`m7hQH`#ZT)??Hc?Ux3R(FeTU0a=0 zN4OJZ{$hf{!t#2hi$E0YOU!CKKE5tA!(q`w$r&f6W3X52m%2Bnn)Uz%RVdL&3vn`e z)s?II>yWYn&gw3|a~3h=X9&_*k#ZozkE^CV{K>W}qpO~*aq>?kwZyGHxuiGqrM&kZ zopsuv&ZnSt&{1l>n#M#MM6ey57@wyM#4kL7Ky6p+NaZP4pQ){@?Zc@**HvqD^^ITH zpM@$Tj)oSKp#6BQW`!JWxxMdeN)e=N&KQwEm)q;&bHFKoPJ2ryM#hDFM zJd$dE`To*L=u!2SU_p_&k4kJx;QbWG>L&0+uM~Zw_Knm6Zi@Hf^U48Q9)xwI@i z3D0b2EY|S12RtkR>!_{I;z#FKystRN9$9#~o3Ub)h2-U_%3LA>ZMZA@xgVTQouUL@ zn%=qjx_}~TT3>eMsw?H?BP0Hv!`5({rj@Jm;iSF-J;Mg1YSiIWJ=r8-XmVK;XHBrH zT0%z$wJ#oLs=R|EY-blwl0Vpp;HqDUk52zFexJYFi zksHZPI+F^E(%SrX_z?nAv-ItamupLAbabQmSl?e47R^kcl|&oq+*lm6`t#xk-jrHj zQa_*5D-!rzx3VfJGDIYRF%uh~y2g7_+S9XMhdA+8N-`4yfU_`vPkQrs*6%A`-52xj zMVg&O&E*lXyCBiL--fWja5tI|X;`@Ln~uP_tn&^Pj6^fUpBU*Z>JuojG|%sQn#Aau zCOdANF8=4)C6c8>T4M6~`ws<3sy$LK9h<9-EKOB=GN9*8mU#2x&^R7`C3-+o*rx+E z^JQCHOtSl&gwl^)C*#TacesR({Qe`qQRuT?#Zz4g+P8IAd1|`l`vNx2Ms+Y{>uJ_t z=*B>5Su%UP&9PN>^Zf=yOAPEphKk>WUNG%(X2t>(z`}qtJ`e z>qBJP>0$wUtxI+*FwxxH!b&zu!DagAyeu&T3H{(Js$FW}fJKEd7V5 zNb;kziQhWq^#i|WM$#n^Hc8}zeW$s8(Y7Z|&Z?|_3x{ujcR7>4P^CTJihmWu*Y}|D zT2GmBNMiDSNI|#o+~|P2M_48+(|z5U_d_(waY(YT9?NO`1hg)$#wY&;h?{IJU17RE zoaB~kXD<8Nzq!ssDB%Jt>WS0+DI?8eu8c;k`{{Tfs#BQSp3oNIRS^IeMrG$o$wR)w=L|+zfJC|cCh5yR(z%~)RW@dD1>hlv+8)mCM#=L%dH46g%#wD^ z?6t~id9Z(muwvf}DWzVDb!=k?73QN|$MF zZb`fX5e+B(`}WG4KIrKv^D*1`bi--M%`dgdfdbV12l{dJZ|_Yu7VLcsBJ7Cjm4uK^ zfWGkLA&}AFZ#rn3gldS}-fBImQpP2D1npF<##S2Ll38)V!dN|*{>N~HC%=$~H|^!d zIVNdTdourRx>?z7k=!g#^90ybtsT|ZAnPzwn5b5ErF`xC+19t)Zl}6Q-*NTeYo5@^ZqugE_ zz0kTgh-V*x@m>J4b7XJNZz*}Kzf;J7Vh>cCXhtVx$!ncuBo5b=^Noqgl~$oxC=D2fpA-O=q2^I z3JU5JuGq}I_5r1|rQ@wOWa+7Cdq$-Sj0V}xV@^DU3G91G-r_n3x~|nzmeW30iYztJ zv(NB0B~JX`%eOV<#*28m$=2z{g|r_lhhD*|4OVO`U%{vLg=jEnx&18BumC8%Q6zL} zyRQp81I#9nC9ERlMq+g$5>y96U?l*HagK)ot&hz~q+Qr{E5X%|gvugTaQW{Y8B)>K zzR>+$o0~@^>kNeBZ45XsJsuH271oKhrd(y>UU9Y+6<{aHPmVW0iAApzlwqGxZqXB@ zt9>B#8LPWew!owO@i5?l`_$L_o*{-VTE?$>;)=;zrkO}@!^gyHPV3lSw5$L9#rEIh zB0~sy=(-8kOV5mzKai8J1-X^ zv6y3Gmcve4VLl#fN)*9Ewt!KLf}C6l5zaE3IbuW@B*N1Ly2D?E;Q0PLMux z!xD0VgNZCtw;3Q61`BvO<9R=q15k-Fr^vI&K>vdRd_J?ViptAC03R03G0 z<8J&CBsaK4T~)p1arem8Lws>S)%7=iS=4tH+S~mKAJupiSPaLz$jXpjkYv~B1NiKFS(v{ z%64P-qw5#d+GJ*~+>D#8Uq$Lr3Fmv4F(Hmt9$5;nW-Sxz6flNxQ0F;q-sr)v{GL*} zv6amo_c!|VQBhx(=f~{%0Ip}vZJ#Y1VfX9!_&}QT{Ey<0!0XSaXM@JM`pM*1S4bJ7 z1{G3gXTb8{6U&F^BAZY|GmaEaWZb2KQS>OUKt;1raex;mK2xNx&%-pG#mLk1Tf29yNaBjTsxDdn_tJ{mEx z3atn|Kk!l*px^OJ>V}lQi1Bv=lC+vQeK$~X-r0*bO1Lw{fd}l)Gac7hJvUa-3^=5| zpFbhIM*x@AQBV(fA@o*Z-gm#xB;69C6Yg&V?d)>ia4(3`uJ|yWB0WNY&l;n@0*;1# z0v-V0r}Q@5B`9b24t1wA%ZzFtp+(&ySDwaJE9h3o1RU)e`tI18c8DDzqkI_=B_kvE zKRVCTNm3LcRx>xbf-aea8F;HeQ=2bV+kf5Ddx=Zy95LUYdKG#x5*{`$Lt94EYtXBc zcE1p6-@XN+*ho5QOLD@O`?GjHylU>*{V>eeCFRDNQIFc)igg1Cl(vVG4GS;e@|`fY zf|f#CRF{S_>@{L;nO7+>U!|%4cRv}7Q{$1atFfoD{{zb!Xm>dWEJV0t4Y8{e^6=JC z9?>0{keQMp^Xc)OI_Pb-b#8V$1@i{G5oZyta(HvTSRi~uVD`86rw{ZDR6r#}8N>0W zuM(?~h>#hUx6ZmlI+w!r#=WJTld*|gk9CO;j{#8IQHdz}$*m`X!{bs^qB-KL!Y`<| z?HGv}U)6U1F#KUwX)Y-LO_BTWxA(W_wBVq=cafZ_WT{B0IH~DwLVWm-8PFhec%1Vandn0Jy=$Kgdda!C*_^TcfcQuHI z`^lx_#p3qJHu>iBSYhXG0_D$D{C33`a(H2QC<3~_rhii4Vvt_Aeb_vH(MNuoFs2)Y zbkK4eB>0X2)jITh=xbb8oNK;uURd4_8C7X?8J*b71Q-=3wUt7h{Fr`euDkxLr=j@7?#+Q#?{iVmBz^s3X7n`l*=PAuW*|am=X*$k*B2~j z{rim!Gin6w19`Eq_n@BAgF78mI9M;_2tg0K{+&q#ZKG)nFj%rq=F}n50DKJrKzW2l_Ktk}m zdJhOA>N_)saK$bBW|-(P|Hj3iN-|>Lx?}LpiG$FI^TQ}82BcOev<_%h{^N@ zTle%?cNJLo?Mz>po9`1Dqt_WT)tQpknE>j{kX?=GfmNK%l}ybr0JM@G3gdmOWPOB* zAlp+RJFxw<|B_2IVi>V*AGIbO1^z1KgwgLv*6)O{$rl^Xm!is-FvXX_$rpc~-n)?A z-I(5guiFu%+td5qfI2>T7@x(EF^MB`s3D!HA+Dq$)v6)!upyJQAvUccMW-QQsUZW< z5Z~O825m@sY{)`}#QcOLOF@41L(=IXafOgnGf3htB$E&lyWi3?)Y4Vb(s$U>nby*~ z)Y9ENye9N-7g2bNMtBELc$-sr7rkwZscna}Z5zr`{8A)0%x-? zia6QbddW`cio7LjVIC=Me%h3$K8V@IU(W z0|jaOrcEif|A9u^^0dR9rvJdlrXbrKoxT6UL1I(BZIRA@AYW%+y(z)=KTvC1rgJ#k z^dGo!hBgVU^gZ@Hn$EUDNp87LES9Gl3LO+TGy8-h|BvCIuBptnWa&RpxU}!ulwte- zz>D|B3$;zE^Y+Uf#rxGzl6>1~mLR~(@YfP?#AjzE}8 diff --git a/api/resources/images/Ace_ERD.svg b/api/resources/images/Ace_ERD.svg deleted file mode 100644 index ba386287..00000000 --- a/api/resources/images/Ace_ERD.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/api/resources/images/ace_logo.png b/api/resources/images/ace_logo.png deleted file mode 100644 index 4dab4f66ebffb0816dc8968ea52f64773970bedb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 42538 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 PelKaN>Z(*J*+l#o=FgAV diff --git a/api/resources/images/c9-sponsor.png b/api/resources/images/c9-sponsor.png deleted file mode 100644 index 599d3b49b07be4610d0ce3c808b47c7218eb2257..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12244 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",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,unknownElems:!!a.getElementsByTagName("nav").length,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",enctype:!!c.createElement("form").enctype,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.lastChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-999px",top:"-999px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
                                                                                                                                                                                                                                                                              ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
                                                                                                                                                                                                                                                                              t
                                                                                                                                                                                                                                                                              ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;f(function(){var a,b,d,e,g,h,i=1,j="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",l="visibility:hidden;border:0;",n="style='"+j+"border:5px solid #000;padding:0;'",p="
                                                                                                                                                                                                                                                                              "+""+"
                                                                                                                                                                                                                                                                              ";m=c.getElementsByTagName("body")[0];!m||(a=c.createElement("div"),a.style.cssText=l+"width:0;height:0;position:static;top:0;margin-top:"+i+"px",m.insertBefore(a,m.firstChild),o=c.createElement("div"),o.style.cssText=j+l,o.innerHTML=p,a.appendChild(o),b=o.firstChild,d=b.firstChild,g=b.nextSibling.firstChild.firstChild,h={doesNotAddBorder:d.offsetTop!==5,doesAddBorderForTableAndCells:g.offsetTop===5},d.style.position="fixed",d.style.top="20px",h.fixedPosition=d.offsetTop===20||d.offsetTop===15,d.style.position=d.style.top="",b.style.overflow="hidden",b.style.position="relative",h.subtractsBorderForOverflowNotVisible=d.offsetTop===-5,h.doesNotIncludeMarginInBodyOffset=m.offsetTop!==i,m.removeChild(a),o=a=null,f.extend(k,h))}),o.innerHTML="",n.removeChild(o),o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[f.expando]:a[f.expando]&&f.expando,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[f.expando]=n=++f.uuid:n=f.expando),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[f.expando]:f.expando;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)?b=b:b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" "));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];if(!arguments.length){if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}return b}e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!a||j===3||j===8||j===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g},removeAttr:function(a,b){var c,d,e,g,h=0;if(a.nodeType===1){d=(b||"").split(p),g=d.length;for(;h=0}})});var z=/\.(.*)$/,A=/^(?:textarea|input|select)$/i,B=/\./g,C=/ /g,D=/[^\w\s.|`]/g,E=/^([^\.]*)?(?:\.(.+))?$/,F=/\bhover(\.\S+)?/,G=/^key/,H=/^(?:mouse|contextmenu)|click/,I=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,J=function(a){var b=I.exec(a);b&& -(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},K=function(a,b){return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||a.id===b[2])&&(!b[3]||b[3].test(a.className))},L=function(a){return f.event.special.hover?a:a.replace(F,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=L(c).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"",(g||!e)&&c.preventDefault();if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,n=null;for(m=e.parentNode;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l=0:t===b&&(t=o[s]=r.quick?K(m,r.quick):f(m).is(s)),t&&q.push(r);q.length&&j.push({elem:m,matches:q})}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),G.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),H.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

                                                                                                                                                                                                                                                                              ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
                                                                                                                                                                                                                                                                              ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",Z=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,_=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,ba=/<([\w:]+)/,bb=/",""],legend:[1,"
                                                                                                                                                                                                                                                                              ","
                                                                                                                                                                                                                                                                              "],thead:[1,"","
                                                                                                                                                                                                                                                                              "],tr:[2,"","
                                                                                                                                                                                                                                                                              "],td:[3,"","
                                                                                                                                                                                                                                                                              "],col:[2,"","
                                                                                                                                                                                                                                                                              "],area:[1,"",""],_default:[0,"",""]},bk=X(c);bj.optgroup=bj.option,bj.tbody=bj.tfoot=bj.colgroup=bj.caption=bj.thead,bj.th=bj.td,f.support.htmlSerialize||(bj._default=[1,"div
                                                                                                                                                                                                                                                                              ","
                                                                                                                                                                                                                                                                              "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after" -,arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Z,""):null;if(typeof a=="string"&&!bd.test(a)&&(f.support.leadingWhitespace||!$.test(a))&&!bj[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(_,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bn(a,d),e=bo(a),g=bo(d);for(h=0;e[h];++h)g[h]&&bn(e[h],g[h])}if(b){bm(a,d);if(c){e=bo(a),g=bo(d);for(h=0;e[h];++h)bm(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bc.test(k))k=b.createTextNode(k);else{k=k.replace(_,"<$1>");var l=(ba.exec(k)||["",""])[1].toLowerCase(),m=bj[l]||bj._default,n=m[0],o=b.createElement("div");b===c?bk.appendChild(o):X(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=bb.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&$.test(k)&&o.insertBefore(b.createTextNode($.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bt.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bs,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bs.test(g)?g.replace(bs,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bB(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bC=function(a,c){var d,e,g;c=c.replace(bu,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bD=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bv.test(f)&&bw.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bB=bC||bD,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bF=/%20/g,bG=/\[\]$/,bH=/\r?\n/g,bI=/#.*$/,bJ=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bK=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bL=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bM=/^(?:GET|HEAD)$/,bN=/^\/\//,bO=/\?/,bP=/)<[^<]*)*<\/script>/gi,bQ=/^(?:select|textarea)/i,bR=/\s+/,bS=/([?&])_=[^&]*/,bT=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bU=f.fn.load,bV={},bW={},bX,bY,bZ=["*/"]+["*"];try{bX=e.href}catch(b$){bX=c.createElement("a"),bX.href="",bX=bX.href}bY=bT.exec(bX.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bU)return bU.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
                                                                                                                                                                                                                                                                              ").append(c.replace(bP,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bQ.test(this.nodeName)||bK.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bH,"\r\n")}}):{name:b.name,value:c.replace(bH,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?cb(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),cb(a,b);return a},ajaxSettings:{url:bX,isLocal:bL.test(bY[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bZ},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:b_(bV),ajaxTransport:b_(bW),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cd(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=ce(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bJ.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bI,"").replace(bN,bY[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bR),d.crossDomain==null&&(r=bT.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bY[1]&&r[2]==bY[2]&&(r[3]||(r[1]==="http:"?80:443))==(bY[3]||(bY[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),ca(bV,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bM.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bO.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bS,"$1_="+x);d.url=y+(y===d.url?(bO.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bZ+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=ca(bW,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)cc(g,a[g],c,e);return d.join("&").replace(bF,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cf=f.now(),cg=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cf++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cg.test(b.url)||e&&cg.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cg,l),b.url===j&&(e&&(k=k.replace(cg,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ch=a.ActiveXObject?function(){for(var a in cj)cj[a](0,1)}:!1,ci=0,cj;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ck()||cl()}:ck,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ch&&delete cj[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++ci,ch&&(cj||(cj={},f(a).unload(ch)),cj[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cm={},cn,co,cp=/^(?:toggle|show|hide)$/,cq=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cr,cs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],ct;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cw("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cz.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cz.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cA(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cA(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); \ No newline at end of file diff --git a/api/resources/javascripts/plugins.js b/api/resources/javascripts/plugins.js deleted file mode 100644 index efda459c..00000000 --- a/api/resources/javascripts/plugins.js +++ /dev/null @@ -1,13 +0,0 @@ -window.log=function(){log.history=log.history||[];log.history.push(arguments);if(this.console){arguments.callee=arguments.callee.caller;var a=[].slice.call(arguments);(typeof console.log==="object"?log.apply.call(console.log,console,a):console.log.apply(console,a))}}; -(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,timeStamp,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();){b[a]=b[a]||c}})((function(){try -{console.log();return window.console;}catch(err){return window.console={};}})()); - -/* - * jQuery throttle / debounce - v1.1 - 3/7/2010 - * http://benalman.com/projects/jquery-throttle-debounce-plugin/ - * - * Copyright (c) 2010 "Cowboy" Ben Alman - * Dual licensed under the MIT and GPL licenses. - * http://benalman.com/about/license/ - */ -(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); diff --git a/api/resources/javascripts/prettify-extension.js b/api/resources/javascripts/prettify-extension.js deleted file mode 100644 index ca8458dc..00000000 --- a/api/resources/javascripts/prettify-extension.js +++ /dev/null @@ -1,24 +0,0 @@ -// Stolen from StackOverflow. Find all
                                                                                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                              -// elements on the page and add the "prettyprint" style. If at least one 
                                                                                                                                                                                                                                                                              -// prettyprint element was found, call the Google Prettify prettyPrint() API.
                                                                                                                                                                                                                                                                              -//http://sstatic.net/so/js/master.js?v=6523
                                                                                                                                                                                                                                                                              -function styleCode() 
                                                                                                                                                                                                                                                                              -{
                                                                                                                                                                                                                                                                              -    if (typeof disableStyleCode != "undefined") 
                                                                                                                                                                                                                                                                              -    {
                                                                                                                                                                                                                                                                              -        return;
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    var a = false;
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    $("pre code").parent().each(function() 
                                                                                                                                                                                                                                                                              -    {
                                                                                                                                                                                                                                                                              -        if (!$(this).hasClass("prettyprint")) 
                                                                                                                                                                                                                                                                              -        {
                                                                                                                                                                                                                                                                              -            $(this).addClass("prettyprint");
                                                                                                                                                                                                                                                                              -            a = true
                                                                                                                                                                                                                                                                              -        }
                                                                                                                                                                                                                                                                              -    });
                                                                                                                                                                                                                                                                              -    
                                                                                                                                                                                                                                                                              -    if (a) { prettyPrint() } 
                                                                                                                                                                                                                                                                              -}
                                                                                                                                                                                                                                                                              \ No newline at end of file
                                                                                                                                                                                                                                                                              diff --git a/api/resources/javascripts/prettify.js b/api/resources/javascripts/prettify.js
                                                                                                                                                                                                                                                                              deleted file mode 100644
                                                                                                                                                                                                                                                                              index eef5ad7e..00000000
                                                                                                                                                                                                                                                                              --- a/api/resources/javascripts/prettify.js
                                                                                                                                                                                                                                                                              +++ /dev/null
                                                                                                                                                                                                                                                                              @@ -1,28 +0,0 @@
                                                                                                                                                                                                                                                                              -var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
                                                                                                                                                                                                                                                                              -(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
                                                                                                                                                                                                                                                                              -[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
                                                                                                                                                                                                                                                                              -l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
                                                                                                                                                                                                                                                                              -q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
                                                                                                                                                                                                                                                                              -q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
                                                                                                                                                                                                                                                                              -"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
                                                                                                                                                                                                                                                                              -a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
                                                                                                                                                                                                                                                                              -for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
                                                                                                                                                                                                                                                                              -"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
                                                                                                                                                                                                                                                                              -H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
                                                                                                                                                                                                                                                                              -J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
                                                                                                                                                                                                                                                                              -I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
                                                                                                                                                                                                                                                                              -["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
                                                                                                                                                                                                                                                                              -/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
                                                                                                                                                                                                                                                                              -["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
                                                                                                                                                                                                                                                                              -hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b=
                                                                                                                                                                                                                                                                              -!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p 1010) sx = 1010 - document.documentElement.offsetWidth;
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -    else sx = 0;
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    $('.members').each(function (i) {
                                                                                                                                                                                                                                                                              -        var $classContent = $(this).closest('.classContent');
                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                              -        $(this).scrollspy({
                                                                                                                                                                                                                                                                              -            min: $classContent.position().top + 5,
                                                                                                                                                                                                                                                                              -            max: $classContent.position().top + $classContent.height() - 35,
                                                                                                                                                                                                                                                                              -            onEnter: function (element, position) {
                                                                                                                                                                                                                                                                              -                var $pagination = $(element);
                                                                                                                                                                                                                                                                              -                var $paginationContent = $('.membersContent pos' + i);
                                                                                                                                                                                                                                                                              -                var $tabs = $('.tabs pos' + i);
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -                $paginationContent.css('left', -1 * sx);
                                                                                                                                                                                                                                                                              -                $paginationContent.css('top', 0);
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -                $pagination.addClass('shadow').stop().css({
                                                                                                                                                                                                                                                                              -                    height: 31
                                                                                                                                                                                                                                                                              -                }).closest('.classContent').addClass('srolled');
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -                $tabs.addClass('tabsSansBorder');
                                                                                                                                                                                                                                                                              -            },
                                                                                                                                                                                                                                                                              -            onLeave: function (element, position) {
                                                                                                                                                                                                                                                                              -                var $pagination = $(element);
                                                                                                                                                                                                                                                                              -                var $paginationContent = $('.membersContent pos' + i);
                                                                                                                                                                                                                                                                              -                var $tabs = $('.tabs pos' + i);
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -                $paginationContent.stop().css({
                                                                                                                                                                                                                                                                              -                    top: 11
                                                                                                                                                                                                                                                                              -                }); 
                                                                                                                                                                                                                                                                              -                $pagination.css({
                                                                                                                                                                                                                                                                              -                    'position': 'absolute',
                                                                                                                                                                                                                                                                              -                    'top': 193
                                                                                                                                                                                                                                                                              -                });
                                                                                                                                                                                                                                                                              -                $pagination.stop().removeClass('shadow').css({
                                                                                                                                                                                                                                                                              -                    height: 42
                                                                                                                                                                                                                                                                              -                });
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -                $paginationContent.css('left', 0);
                                                                                                                                                                                                                                                                              -               // setTimeout(function () {
                                                                                                                                                                                                                                                                              -                    $paginationContent.css({
                                                                                                                                                                                                                                                                              -                        'top': ''
                                                                                                                                                                                                                                                                              -                    });
                                                                                                                                                                                                                                                                              -                    $pagination.css({
                                                                                                                                                                                                                                                                              -                        'position': '',
                                                                                                                                                                                                                                                                              -                        'top': ''
                                                                                                                                                                                                                                                                              -                    });
                                                                                                                                                                                                                                                                              -                    $paginationContent.css('left', 0);
                                                                                                                                                                                                                                                                              -                    $pagination.closest('.classContent').removeClass('srolled')
                                                                                                                                                                                                                                                                              -                    $tabs.removeClass('tabsSansBorder');
                                                                                                                                                                                                                                                                              -               // }, 300);
                                                                                                                                                                                                                                                                              -            }
                                                                                                                                                                                                                                                                              -        });
                                                                                                                                                                                                                                                                              -    });
                                                                                                                                                                                                                                                                              -    
                                                                                                                                                                                                                                                                              -    $('span.methodClicker, article.article, i.methodClicker').each(function () {
                                                                                                                                                                                                                                                                              -        var a = $(this);
                                                                                                                                                                                                                                                                              -        var constructorPos = a.attr("id").indexOf("new ");
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -        var objName = a.attr("id");
                                                                                                                                                                                                                                                                              -        if (constructorPos >= 0) {
                                                                                                                                                                                                                                                                              -            objName = objName.substring(constructorPos + 4);
                                                                                                                                                                                                                                                                              -            objName += ".new";
                                                                                                                                                                                                                                                                              -        }
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -        a.attr("id", objName);
                                                                                                                                                                                                                                                                              -    });
                                                                                                                                                                                                                                                                              -    
                                                                                                                                                                                                                                                                              -    function showMethodContent() {
                                                                                                                                                                                                                                                                              -        var locationHash = location.hash.replace(/^#/, '').replace(/\./g, '\\.');
                                                                                                                                                                                                                                                                              -        var equalsPos = location.hash.indexOf("=");
                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                              -        if (equalsPos >=0) {
                                                                                                                                                                                                                                                                              -            locationHash = locationHash.substring(0, location.hash.indexOf("="));
                                                                                                                                                                                                                                                                              -        }
                                                                                                                                                                                                                                                                              -        
                                                                                                                                                                                                                                                                              -        var $clickerEl = $('span#' + locationHash);
                                                                                                                                                                                                                                                                              -        if ($clickerEl.length > 0 && $clickerEl.hasClass('methodClicker')) {
                                                                                                                                                                                                                                                                              -            var p = $clickerEl.parent();
                                                                                                                                                                                                                                                                              -            p[0].force = true;
                                                                                                                                                                                                                                                                              -            p.trigger('click');
                                                                                                                                                                                                                                                                              -            p[0].force = false;
                                                                                                                                                                                                                                                                              -        }
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    if (location.hash.indexOf("section") >= 1) {
                                                                                                                                                                                                                                                                              -        showMethodContent();
                                                                                                                                                                                                                                                                              -        var data = location.hash;
                                                                                                                                                                                                                                                                              -        scrollTo(null, data.substr(1));
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    window.onhashchange = function () {
                                                                                                                                                                                                                                                                              -        showMethodContent();
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -};
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -function scrollTo(el, data) {
                                                                                                                                                                                                                                                                              -    if (!data) {
                                                                                                                                                                                                                                                                              -        data = el.getAttribute("data-id");
                                                                                                                                                                                                                                                                              -        //location.hash = data;
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -    var el = $("span#" + data.replace(/\./g, "\\."))[0];
                                                                                                                                                                                                                                                                              -    if (!el) return;
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    var article = $(el).closest('.article')[0];
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    var top = article.offsetTop - 100;
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              -    if (document.body.scrollTop > top || document.body.scrollTop != top && document.body.scrollTop + (window.innerHeight || document.documentElement.offsetHeight) < top + article.offsetHeight) {
                                                                                                                                                                                                                                                                              -        $('body').animate({
                                                                                                                                                                                                                                                                              -            scrollTop: top
                                                                                                                                                                                                                                                                              -        }, {
                                                                                                                                                                                                                                                                              -            duration: 200,
                                                                                                                                                                                                                                                                              -            easing: "swing"
                                                                                                                                                                                                                                                                              -        });
                                                                                                                                                                                                                                                                              -    }
                                                                                                                                                                                                                                                                              -}
                                                                                                                                                                                                                                                                              \ No newline at end of file
                                                                                                                                                                                                                                                                              diff --git a/api/scrollbar.html b/api/scrollbar.html
                                                                                                                                                                                                                                                                              deleted file mode 100644
                                                                                                                                                                                                                                                                              index 8ba5848c..00000000
                                                                                                                                                                                                                                                                              --- a/api/scrollbar.html
                                                                                                                                                                                                                                                                              +++ /dev/null
                                                                                                                                                                                                                                                                              @@ -1,19 +0,0 @@
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              A set of methods for setting and retrieving the editor's scrollbar.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                              Creates a new ScrollBar. parent is the owner of the scroll bar.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Creates a new ScrollBar. parent is the owner of the scroll bar.

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                              parentDOMElement

                                                                                                                                                                                                                                                                              Required. A DOM element

                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                • ScrollBar.on("scroll", function(Object e))

                                                                                                                                                                                                                                                                                Emitted when the scroll bar, well, scrolls.

                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                Emitted when the scroll bar, well, scrolls.

                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                eObject

                                                                                                                                                                                                                                                                                Required. Contains one property, "data", which indicates the current scroll top position

                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                Methods

                                                                                                                                                                                                                                                                                Returns the width of the scroll bar.

                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                Returns the width of the scroll bar.

                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                  • ScrollBar.setHeight(Number height)

                                                                                                                                                                                                                                                                                  Sets the height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  Sets the height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                                                                                  heightNumber

                                                                                                                                                                                                                                                                                  Required. The new height

                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                    • ScrollBar.setInnerHeight(Number height)

                                                                                                                                                                                                                                                                                    Sets the inner height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    Sets the inner height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                    heightNumber

                                                                                                                                                                                                                                                                                    Required. The new inner height

                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                      • ScrollBar.setScrollTop(Number scrollTop)

                                                                                                                                                                                                                                                                                      Sets the scroll top of the scroll bar.

                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      Sets the scroll top of the scroll bar.

                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                      scrollTopNumber

                                                                                                                                                                                                                                                                                      Required. The new scroll top

                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      \ No newline at end of file diff --git a/api/search.html b/api/search.html deleted file mode 100644 index a2e1f5f3..00000000 --- a/api/search.html +++ /dev/null @@ -1,35 +0,0 @@ -

                                                                                                                                                                                                                                                                                      A class designed to handle all sorts of text searches within a Document.

                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                        • new Search()

                                                                                                                                                                                                                                                                                        Creates a new Search object. The following search options are avaliable:

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Creates a new Search object. The following search options are avaliable:

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        • needle: The string or regular expression you're looking for
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • backwards: Whether to search backwards from where cursor currently is. Defaults to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • wrap: Whether to wrap the search back to the beginning when it hits the end. Defaults to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • caseSensitive: Whether the search ought to be case-sensitive. Defaults to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • wholeWord: Whether the search matches only on whole words. Defaults to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • range: The Range to search within. Set this to null for the whole document
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • regExp: Whether the search is a regular expression or not. Defaults to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • start: The starting Range or cursor position to begin the search
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        • skipCurrent: Whether or not to include the current line in the search. Default to false.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                        Searches for options.needle. If found, this method returns the Range where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Searches for options.needle. If found, this method returns the Range where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                        sessionEditSession

                                                                                                                                                                                                                                                                                        Required. The session to search with

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Searches for all occurances options.needle. If found, this method returns an array of Ranges where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Searches for all occurances options.needle. If found, this method returns an array of Ranges where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                        sessionEditSession

                                                                                                                                                                                                                                                                                        Required. The session to search with

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Returns an object containing all the search options.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Returns an object containing all the search options.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Searches for options.needle in input, and, if found, replaces it with replacement.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Searches for options.needle in input, and, if found, replaces it with replacement.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                        inputString

                                                                                                                                                                                                                                                                                        Required. The text to search in

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        replacementString

                                                                                                                                                                                                                                                                                        Required. The replacing text

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Returns

                                                                                                                                                                                                                                                                                        String

                                                                                                                                                                                                                                                                                        If options.regExp is true, this function returns input with the replacement already made. Otherwise, this function just returns replacement.

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                        • If options.needle was not found, this function returns null.
                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Sets the search options via the options parameter.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Sets the search options via the options parameter.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                        optionsObject

                                                                                                                                                                                                                                                                                        Required. An object containing all the new search properties

                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        \ No newline at end of file diff --git a/api/selection.html b/api/selection.html deleted file mode 100644 index bb08acd7..00000000 --- a/api/selection.html +++ /dev/null @@ -1,123 +0,0 @@ -

                                                                                                                                                                                                                                                                                        Contains the cursor position and the text selection of an edit session.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        The row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                        Creates a new Selection object.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Creates a new Selection object.

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                        sessionEditSession

                                                                                                                                                                                                                                                                                        Required. The session to use

                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                        Events

                                                                                                                                                                                                                                                                                          • Selection.on("changeCursor", function())

                                                                                                                                                                                                                                                                                          Emitted when the cursor position changes.

                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          Emitted when the cursor position changes.

                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                            • Selection.on("changeSelection", function())

                                                                                                                                                                                                                                                                                            Emitted when the cursor selection changes.

                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Emitted when the cursor selection changes.

                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                            Adds a range to a selection by entering multiselect mode, if necessary.

                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Adds a range to a selection by entering multiselect mode, if necessary.

                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                                            rangeRange

                                                                                                                                                                                                                                                                                            Required. The new range to add

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            $blockChangeEventsBoolean

                                                                                                                                                                                                                                                                                            Required. Whether or not to block changing events

                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                              • Selection.clearSelection()

                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                • Selection.getRange()

                                                                                                                                                                                                                                                                                                Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                  • Selection.getSelectionAnchor()
                                                                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                                                                Returns an object containing the row and column of the calling selection anchor.

                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                Returns an object containing the row and column of the calling selection anchor.

                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                  • Selection.getSelectionLead()

                                                                                                                                                                                                                                                                                                  Returns an object containing the row and column of the calling selection lead.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns an object containing the row and column of the calling selection lead.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is going backwards in the document.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is going backwards in the document.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is empty.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is empty.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is a multi-line.

                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                  Returns true if the selection is a multi-line.

                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                    • Selection.mergeOverlappingRanges()

                                                                                                                                                                                                                                                                                                    Merges overlapping ranges ensuring consistency after changes

                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Merges overlapping ranges ensuring consistency after changes

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                      • Related to:

                                                                                                                                                                                                                                                                                                    Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.

                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.

                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                                    rowsNumber

                                                                                                                                                                                                                                                                                                    Required. The number of rows to move by

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    charsNumber

                                                                                                                                                                                                                                                                                                    Required. The number of characters to move by

                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                      • Selection.moveCursorDown()

                                                                                                                                                                                                                                                                                                      Moves the cursor down one row.

                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                      Moves the cursor down one row.

                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                        • Selection.moveCursorFileEnd()

                                                                                                                                                                                                                                                                                                        Moves the cursor to the end of the file.

                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        Moves the cursor to the end of the file.

                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                          • Selection.moveCursorFileStart()

                                                                                                                                                                                                                                                                                                          Moves the cursor to the start of the file.

                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          Moves the cursor to the start of the file.

                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                            • Selection.moveCursorLeft()

                                                                                                                                                                                                                                                                                                            Moves the cursor left one column.

                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            Moves the cursor left one column.

                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                              • Selection.moveCursorLineEnd()

                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the line.

                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the line.

                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLineStart()

                                                                                                                                                                                                                                                                                                                Moves the cursor to the start of the line.

                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                Moves the cursor to the start of the line.

                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                  • Selection.moveCursorLongWordLeft()

                                                                                                                                                                                                                                                                                                                  Moves the cursor to the word on the left.

                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Moves the cursor to the word on the left.

                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                    • Selection.moveCursorLongWordRight()

                                                                                                                                                                                                                                                                                                                    Moves the cursor to the word on the right.

                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    Moves the cursor to the word on the right.

                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                      • Selection.moveCursorRight()

                                                                                                                                                                                                                                                                                                                      Moves the cursor right one column.

                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      Moves the cursor right one column.

                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      Moves the cursor to the row and column provided. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      Moves the cursor to the row and column provided. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                      rowNumber

                                                                                                                                                                                                                                                                                                                      Required. The row to move to

                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      columnNumber

                                                                                                                                                                                                                                                                                                                      Required. The column to move to

                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      keepDesiredColumnBoolean

                                                                                                                                                                                                                                                                                                                      Required. If true, the cursor move does not respect the previous column

                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                        • Selection.moveCursorToPosition(Object position)

                                                                                                                                                                                                                                                                                                                        Moves the selection to the position indicated by its row and column.

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Moves the selection to the position indicated by its row and column.

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                        positionObject

                                                                                                                                                                                                                                                                                                                        Required. The position to move to

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Moves the cursor to the screen position indicated by row and column. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Moves the cursor to the screen position indicated by row and column. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                        rowNumber

                                                                                                                                                                                                                                                                                                                        Required. The row to move to

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        columnNumber

                                                                                                                                                                                                                                                                                                                        Required. The column to move to

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                        keepDesiredColumnBoolean

                                                                                                                                                                                                                                                                                                                        Required. If true, the cursor move does not respect the previous column

                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                          • Selection.moveCursorUp()

                                                                                                                                                                                                                                                                                                                          Moves the cursor up one row.

                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          Moves the cursor up one row.

                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          Gets list of ranges composing rectangular block on the screen

                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          Gets list of ranges composing rectangular block on the screen

                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                                                                                                          screenCursorCursor

                                                                                                                                                                                                                                                                                                                          Required. The cursor to use

                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          screenAnchorAnchor

                                                                                                                                                                                                                                                                                                                          Required. The anchor to use

                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                          includeEmptyLinesBoolean

                                                                                                                                                                                                                                                                                                                          Required. If true, this includes ranges inside the block which are empty due to clipping

                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                            • Selection.selectAll()

                                                                                                                                                                                                                                                                                                                            Selects all the text in the document.

                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                            Selects all the text in the document.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                              • Selection.selectAWord()
                                                                                                                                                                                                                                                                                                                              • Related to:

                                                                                                                                                                                                                                                                                                                            Selects a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                            Selects a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                              • Selection.selectDown()

                                                                                                                                                                                                                                                                                                                              Moves the selection down one row.

                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                              Moves the selection down one row.

                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                • Selection.selectFileEnd()

                                                                                                                                                                                                                                                                                                                                Moves the selection to the end of the file.

                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                Moves the selection to the end of the file.

                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                  • Selection.selectFileStart()

                                                                                                                                                                                                                                                                                                                                  Moves the selection to the start of the file.

                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  Moves the selection to the start of the file.

                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                    • Selection.selectLeft()

                                                                                                                                                                                                                                                                                                                                    Moves the selection left one column.

                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                    Moves the selection left one column.

                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                      • Selection.selectLine()

                                                                                                                                                                                                                                                                                                                                      Selects the entire line.

                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      Selects the entire line.

                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                        • Selection.selectLineEnd()

                                                                                                                                                                                                                                                                                                                                        Moves the selection to the end of the current line.

                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                        Moves the selection to the end of the current line.

                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                          • Selection.selectLineStart()

                                                                                                                                                                                                                                                                                                                                          Moves the selection to the beginning of the current line.

                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                          Moves the selection to the beginning of the current line.

                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                            • Selection.selectRight()

                                                                                                                                                                                                                                                                                                                                            Moves the selection right one column.

                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                            Moves the selection right one column.

                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                            Moves the selection cursor to the indicated row and column.

                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                            Moves the selection cursor to the indicated row and column.

                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                                                                                            rowNumber

                                                                                                                                                                                                                                                                                                                                            Required. The row to select to

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            columnNumber

                                                                                                                                                                                                                                                                                                                                            Required. The column to select to

                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                              • Selection.selectToPosition(Object pos)

                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the row and column indicated by pos.

                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the row and column indicated by pos.

                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                              posObject

                                                                                                                                                                                                                                                                                                                                              Required. An object containing the row and column

                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                • Selection.selectUp()

                                                                                                                                                                                                                                                                                                                                                Moves the selection up one row.

                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                Moves the selection up one row.

                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                  • Selection.selectWord()
                                                                                                                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                                                                                                                Moves the selection to highlight the entire word.

                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                Moves the selection to highlight the entire word.

                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                  • Selection.selectWordLeft()

                                                                                                                                                                                                                                                                                                                                                  Moves the selection to the first word on the left.

                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                  Moves the selection to the first word on the left.

                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                    • Selection.selectWordRight()

                                                                                                                                                                                                                                                                                                                                                    Moves the selection to the first word on the right.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Moves the selection to the first word on the right.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Sets the row and column position of the anchor. This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Sets the row and column position of the anchor. This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                                                                                    rowNumber

                                                                                                                                                                                                                                                                                                                                                    Required. The new row

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    columnNumber

                                                                                                                                                                                                                                                                                                                                                    Required. The new column

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Sets the selection to the provided range.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Sets the selection to the provided range.

                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                                                                                    rangeRange

                                                                                                                                                                                                                                                                                                                                                    Required. The range of text to select

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    reverseBoolean

                                                                                                                                                                                                                                                                                                                                                    Required. Indicates if the range should go backwards (true) or not

                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                      • Selection.shiftSelection(Number columns)

                                                                                                                                                                                                                                                                                                                                                      Shifts the selection up (or down, if isBackwards() is true) the given number of columns.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Shifts the selection up (or down, if isBackwards() is true) the given number of columns.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                      columnsNumber

                                                                                                                                                                                                                                                                                                                                                      Required. The number of columns to shift by

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Removes a Range containing pos (if it exists).

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Removes a Range containing pos (if it exists).

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                      posRange

                                                                                                                                                                                                                                                                                                                                                      Required. The position to remove, as a {row, column} object

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      \ No newline at end of file diff --git a/api/split.html b/api/split.html deleted file mode 100644 index 44c46036..00000000 --- a/api/split.html +++ /dev/null @@ -1,36 +0,0 @@ -

                                                                                                                                                                                                                                                                                                                                                      Constructors

                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                      containerDocument

                                                                                                                                                                                                                                                                                                                                                      Required. The document to associate with the split

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      themeString

                                                                                                                                                                                                                                                                                                                                                      Required. The name of the initial theme

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      splitsNumber

                                                                                                                                                                                                                                                                                                                                                      Required. The number of initial splits

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                        • Split.blur()
                                                                                                                                                                                                                                                                                                                                                          • Void
                                                                                                                                                                                                                                                                                                                                                        • Related to:

                                                                                                                                                                                                                                                                                                                                                      Blurs the current editor.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Blurs the current editor.

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                        • Split.focus()
                                                                                                                                                                                                                                                                                                                                                          • Void
                                                                                                                                                                                                                                                                                                                                                        • Related to:

                                                                                                                                                                                                                                                                                                                                                      Focuses the current editor.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Focuses the current editor.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Executes callback on all of the available editors.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Executes callback on all of the available editors.

                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                      callbackFunction

                                                                                                                                                                                                                                                                                                                                                      Required. A callback function to execute

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      scopeString

                                                                                                                                                                                                                                                                                                                                                      Required.

                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                        • Split.getCurrentEditor()

                                                                                                                                                                                                                                                                                                                                                        Returns the current editor.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the current editor.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the editor identified by the index idx.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the editor identified by the index idx.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        idxNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The index of the editor you want

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Internal

                                                                                                                                                                                                                                                                                                                                                        Returns the orientation.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the orientation.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the number of splits.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Returns the number of splits.

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.resize()
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Internal
                                                                                                                                                                                                                                                                                                                                                          • Split.setFontSize(Number size)
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Related to:

                                                                                                                                                                                                                                                                                                                                                        Sets the font size, in pixels, for all the available editors.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Sets the font size, in pixels, for all the available editors.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        sizeNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The new font size

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.setKeyboardHandler(String keybinding)
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Internal

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        keybindingString

                                                                                                                                                                                                                                                                                                                                                        Required.

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.setOrientation(Number oriantation)
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Internal

                                                                                                                                                                                                                                                                                                                                                        Sets the orientation.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Sets the orientation.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        oriantationNumber

                                                                                                                                                                                                                                                                                                                                                        Required.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Sets a new EditSession for the indicated editor.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Sets a new EditSession for the indicated editor.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        sessionEditSession

                                                                                                                                                                                                                                                                                                                                                        Required. The new edit session

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        idxNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The editor's index you're interested in

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.setSplits(Number splits)
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Internal

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        splitsNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The new number of splits

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.setTheme(String theme)
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Related to:

                                                                                                                                                                                                                                                                                                                                                        Sets a theme for each of the available editors.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Sets a theme for each of the available editors.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        themeString

                                                                                                                                                                                                                                                                                                                                                        Required. The name of the theme to set

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                          • Split.UndoManagerProxy()
                                                                                                                                                                                                                                                                                                                                                            • Void
                                                                                                                                                                                                                                                                                                                                                          • Internal
                                                                                                                                                                                                                                                                                                                                                        \ No newline at end of file diff --git a/api/token_iterator.html b/api/token_iterator.html deleted file mode 100644 index a6de2ef9..00000000 --- a/api/token_iterator.html +++ /dev/null @@ -1,18 +0,0 @@ -

                                                                                                                                                                                                                                                                                                                                                        This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Constructors

                                                                                                                                                                                                                                                                                                                                                        Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                        sessionEditSession

                                                                                                                                                                                                                                                                                                                                                        Required. The session to associate with

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        initialRowNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The row to start the tokenizing at

                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        initialColumnNumber

                                                                                                                                                                                                                                                                                                                                                        Required. The column to start the tokenizing at

                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                        Methods

                                                                                                                                                                                                                                                                                                                                                          • TokenIterator.getCurrentToken()

                                                                                                                                                                                                                                                                                                                                                          Returns the current tokenized string.

                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                          Returns the current tokenized string.

                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                            • TokenIterator.getCurrentTokenColumn()

                                                                                                                                                                                                                                                                                                                                                            Returns the current column.

                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                            Returns the current column.

                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                              • TokenIterator.getCurrentTokenRow()

                                                                                                                                                                                                                                                                                                                                                              Returns the current row.

                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                              Returns the current row.

                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.stepBackward()

                                                                                                                                                                                                                                                                                                                                                                Tokenizes all the items from the current point to the row prior in the document.

                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                Tokenizes all the items from the current point to the row prior in the document.

                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                Returns

                                                                                                                                                                                                                                                                                                                                                                String

                                                                                                                                                                                                                                                                                                                                                                If the current point is not at the top of the file, this function returns null. Otherwise, it returns an array of the tokenized strings.

                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                  • TokenIterator.stepForward()

                                                                                                                                                                                                                                                                                                                                                                  Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns null. Otherwise, it returns the tokenized string.

                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns null. Otherwise, it returns the tokenized string.

                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  \ No newline at end of file diff --git a/api/tokenizer.html b/api/tokenizer.html deleted file mode 100644 index 5ca489e9..00000000 --- a/api/tokenizer.html +++ /dev/null @@ -1,8 +0,0 @@ -

                                                                                                                                                                                                                                                                                                                                                                  Constructors

                                                                                                                                                                                                                                                                                                                                                                  Constructs a new tokenizer based on the given rules and flags.

                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  Constructs a new tokenizer based on the given rules and flags.

                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                                                                                                                                                                  rulesObject

                                                                                                                                                                                                                                                                                                                                                                  Required. The highlighting rules

                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  flagString

                                                                                                                                                                                                                                                                                                                                                                  Required. Any additional regular expression flags to pass (like "i" for case insensitive)

                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                    • Tokenizer.getLineTokens()

                                                                                                                                                                                                                                                                                                                                                                    Returns an object containing two properties: tokens, which contains all the tokens; and state, the current state.

                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                    Returns an object containing two properties: tokens, which contains all the tokens; and state, the current state.

                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    \ No newline at end of file diff --git a/api/undomanager.html b/api/undomanager.html deleted file mode 100644 index da876c91..00000000 --- a/api/undomanager.html +++ /dev/null @@ -1,23 +0,0 @@ -

                                                                                                                                                                                                                                                                                                                                                                    This object maintains the undo stack for an EditSession.

                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                    Constructors

                                                                                                                                                                                                                                                                                                                                                                      • new UndoManager()

                                                                                                                                                                                                                                                                                                                                                                      Resets the current undo state and creates a new UndoManager.

                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                      Resets the current undo state and creates a new UndoManager.

                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                        • UndoManager.execute(Object options)
                                                                                                                                                                                                                                                                                                                                                                          • Void

                                                                                                                                                                                                                                                                                                                                                                        Provides a means for implementing your own undo manager. options has one property, args, an Array, with two elements:

                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Provides a means for implementing your own undo manager. options has one property, args, an Array, with two elements:

                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                        • args[0] is an array of deltas
                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                        • args[1] is the document to associate with
                                                                                                                                                                                                                                                                                                                                                                        • -
                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                                        optionsObject

                                                                                                                                                                                                                                                                                                                                                                        Required. Contains additional properties

                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Returns true if there are redo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Returns true if there are redo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Returns true if there are undo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        Returns true if there are undo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                          • UndoManager.redo(Boolean dontSelect)
                                                                                                                                                                                                                                                                                                                                                                            • Void

                                                                                                                                                                                                                                                                                                                                                                          Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                          Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                                                                                                                                                          dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                          Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                            • UndoManager.reset()
                                                                                                                                                                                                                                                                                                                                                                              • Void

                                                                                                                                                                                                                                                                                                                                                                            Destroys the stack of undo and redo redo operations.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Destroys the stack of undo and redo redo operations.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Perform an undo operation on the document, reverting the last change. Returns the range of the undo.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Perform an undo operation on the document, reverting the last change. Returns the range of the undo.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                                                                                                                            dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                            Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            \ No newline at end of file diff --git a/api/virtual_renderer.html b/api/virtual_renderer.html deleted file mode 100644 index b61cb4b5..00000000 --- a/api/virtual_renderer.html +++ /dev/null @@ -1,153 +0,0 @@ -

                                                                                                                                                                                                                                                                                                                                                                            The class that is responsible for drawing everything you see on the screen!

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Constructors

                                                                                                                                                                                                                                                                                                                                                                            Constructs a new VirtualRenderer within the container specified, applying the given theme.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Constructs a new VirtualRenderer within the container specified, applying the given theme.

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                                                                                                                            containerDOMElement

                                                                                                                                                                                                                                                                                                                                                                            Required. The root element of the editor

                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            themeString

                                                                                                                                                                                                                                                                                                                                                                            Required. The starting theme

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Methods

                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.addGutterDecoration(row, className)
                                                                                                                                                                                                                                                                                                                                                                              • Deprecated

                                                                                                                                                                                                                                                                                                                                                                            Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.adjustWrapLimit()

                                                                                                                                                                                                                                                                                                                                                                              Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.

                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                              Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.

                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.destroy()

                                                                                                                                                                                                                                                                                                                                                                                Destroys the text and cursor layers for this renderer.

                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                Destroys the text and cursor layers for this renderer.

                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.getAnimatedScroll()

                                                                                                                                                                                                                                                                                                                                                                                  Returns whether an animated scroll happens or not.

                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  Returns whether an animated scroll happens or not.

                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  Returns the root element containing this renderer.

                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  Returns the root element containing this renderer.

                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                    • VirtualRenderer.getFirstFullyVisibleRow()

                                                                                                                                                                                                                                                                                                                                                                                    Returns the index of the first fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                    Returns the index of the first fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                      • VirtualRenderer.getFirstVisibleRow()

                                                                                                                                                                                                                                                                                                                                                                                      Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                      Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.getHScrollBarAlwaysVisible()

                                                                                                                                                                                                                                                                                                                                                                                        Returns whether the horizontal scrollbar is set to be always visible.

                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                        Returns whether the horizontal scrollbar is set to be always visible.

                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                          • VirtualRenderer.getLastFullyVisibleRow()

                                                                                                                                                                                                                                                                                                                                                                                          Returns the index of the last fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                          Returns the index of the last fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                            • VirtualRenderer.getLastVisibleRow()

                                                                                                                                                                                                                                                                                                                                                                                            Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                            Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                            Returns the element that the mouse events are attached to

                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                            Returns the element that the mouse events are attached to

                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.getPrintMarginColumn()

                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin column is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin column is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getScrollBottomRow()

                                                                                                                                                                                                                                                                                                                                                                                                Returns the last visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                Returns the last visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.getScrollLeft()
                                                                                                                                                                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                                                                                                                                                                Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.getScrollTop()
                                                                                                                                                                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                                                                                                                                                                Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.getScrollTopRow()

                                                                                                                                                                                                                                                                                                                                                                                                  Returns the first visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                  Returns the first visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                    • VirtualRenderer.getShowGutter()

                                                                                                                                                                                                                                                                                                                                                                                                    Returns true if the gutter is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                    Returns true if the gutter is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                      • VirtualRenderer.getShowInvisibles()

                                                                                                                                                                                                                                                                                                                                                                                                      Returns whether invisible characters are being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                      Returns whether invisible characters are being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.getShowPrintMargin()

                                                                                                                                                                                                                                                                                                                                                                                                        Returns whetherthe print margin is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        Returns whetherthe print margin is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        Returns the element to which the hidden text area is added.

                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                        Returns the element to which the hidden text area is added.

                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                          • VirtualRenderer.getTheme()

                                                                                                                                                                                                                                                                                                                                                                                                          Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                          Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                            • VirtualRenderer.hideComposition()

                                                                                                                                                                                                                                                                                                                                                                                                            Hides the current composition.

                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                            Hides the current composition.

                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.hideCursor()

                                                                                                                                                                                                                                                                                                                                                                                                              Hides the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Hides the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                              deltaXNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The x value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              deltaYNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The y value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                              forceBoolean

                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, recomputes the size, even if the height and width haven't changed

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              gutterWidthNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The width of the gutter in pixels

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              widthNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The width of the editor in pixels

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              heightNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The hiehgt of the editor, in pixels

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.removeGutterDecoration(row, className)
                                                                                                                                                                                                                                                                                                                                                                                                                  • Void
                                                                                                                                                                                                                                                                                                                                                                                                                • Deprecated

                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across both x- and y-axes.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across both x- and y-axes.

                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                              deltaXNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The x value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              deltaYNumber

                                                                                                                                                                                                                                                                                                                                                                                                              Required. The y value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollCursorIntoView(cursor, offset)

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the cursor into the first visibile area of the editor

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the cursor into the first visibile area of the editor

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Gracefully scrolls the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Gracefully scrolls the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                lineNumber

                                                                                                                                                                                                                                                                                                                                                                                                                Required. A line number

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                centerBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                Required. If true, centers the editor the to indicated line

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                Required. If true animates scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                callbackFunction

                                                                                                                                                                                                                                                                                                                                                                                                                Required. Function to be called after the animation has finished

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.scrollToRow(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                  • Related to:

                                                                                                                                                                                                                                                                                                                                                                                                                Gracefully scrolls the top of the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Gracefully scrolls the top of the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                Required. A row id

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the editor to the x pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the editor to the x pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                scrollLeftNumber

                                                                                                                                                                                                                                                                                                                                                                                                                Required. The position to scroll to

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the editor to the y pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Scrolls the editor to the y pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                scrollTopNumber

                                                                                                                                                                                                                                                                                                                                                                                                                Required. The position to scroll to

                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.setAnimatedScroll(Boolean shouldAnimate)

                                                                                                                                                                                                                                                                                                                                                                                                                  Identifies whether you want to have an animated scroll or not.

                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                  Identifies whether you want to have an animated scroll or not.

                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                  shouldAnimateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                  Required. Set to true to show animated scrolls

                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                    • VirtualRenderer.setAnnotations(Array annotations)

                                                                                                                                                                                                                                                                                                                                                                                                                    Sets annotations for the gutter.

                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    Sets annotations for the gutter.

                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                    annotationsArray

                                                                                                                                                                                                                                                                                                                                                                                                                    Required. An array containing annotations

                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                      • VirtualRenderer.setCompositionText(String text)

                                                                                                                                                                                                                                                                                                                                                                                                                      Sets the inner text of the current composition to text.

                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                      Sets the inner text of the current composition to text.

                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                      textString

                                                                                                                                                                                                                                                                                                                                                                                                                      Required. A string of text to use

                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.setHScrollBarAlwaysVisible(Boolean alwaysVisible)

                                                                                                                                                                                                                                                                                                                                                                                                                        Identifies whether you want to show the horizontal scrollbar or not.

                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                        Identifies whether you want to show the horizontal scrollbar or not.

                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                        alwaysVisibleBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                        Required. Set to true to make the horizontal scroll bar visible

                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                          • VirtualRenderer.setPadding(Number padding)

                                                                                                                                                                                                                                                                                                                                                                                                                          Sets the padding for all the layers.

                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                          Sets the padding for all the layers.

                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                          paddingNumber

                                                                                                                                                                                                                                                                                                                                                                                                                          Required. A new padding value (in pixels)

                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                            • VirtualRenderer.setPrintMarginColumn(Boolean showPrintMargin)

                                                                                                                                                                                                                                                                                                                                                                                                                            Identifies whether you want to show the print margin column or not.

                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                            Identifies whether you want to show the print margin column or not.

                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                            Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                            showPrintMarginBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                            Required. Set to true to show the print margin column

                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.setShowGutter(Boolean show)

                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the gutter or not.

                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the gutter or not.

                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                              showBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show the gutter

                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setShowInvisibles(Boolean showInvisibles)

                                                                                                                                                                                                                                                                                                                                                                                                                                Identifies whether you want to show invisible characters or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                Identifies whether you want to show invisible characters or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                showInvisiblesBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                Required. Set to true to show invisibles

                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.setShowPrintMargin(Boolean showPrintMargin)

                                                                                                                                                                                                                                                                                                                                                                                                                                  Identifies whether you want to show the print margin or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                  Identifies whether you want to show the print margin or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                  Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                  showPrintMarginBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                  Required. Set to true to show the print margin

                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                    • VirtualRenderer.setStyle(String style)

                                                                                                                                                                                                                                                                                                                                                                                                                                    Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                    Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                    styleString

                                                                                                                                                                                                                                                                                                                                                                                                                                    Required. A class name

                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                      • VirtualRenderer.setTheme(String theme)

                                                                                                                                                                                                                                                                                                                                                                                                                                      Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                      Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                      themeString

                                                                                                                                                                                                                                                                                                                                                                                                                                      Required. The path to a theme

                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.showComposition(Number position)
                                                                                                                                                                                                                                                                                                                                                                                                                                        • Internal

                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                      positionNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                      Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.showCursor()

                                                                                                                                                                                                                                                                                                                                                                                                                                        Shows the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        Shows the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns an object containing the pageX and pageY coordinates of the document position.

                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns an object containing the pageX and pageY coordinates of the document position.

                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                        rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                        Required. The document row position

                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                        Required. The document column position

                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                          • VirtualRenderer.unsetStyle(String style)

                                                                                                                                                                                                                                                                                                                                                                                                                                          Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                          Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                          Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                          styleString

                                                                                                                                                                                                                                                                                                                                                                                                                                          Required. A class name

                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                            • VirtualRenderer.updateBackMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                            Schedules an update to all the back markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                            Schedules an update to all the back markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.updateBreakpoints()

                                                                                                                                                                                                                                                                                                                                                                                                                                              Redraw breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                              Redraw breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateCursor()

                                                                                                                                                                                                                                                                                                                                                                                                                                                Updates the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                Updates the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • VirtualRenderer.updateFontSize()

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Updates the font size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Updates the font size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • VirtualRenderer.updateFrontMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Schedules an update to all the front markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Schedules an update to all the front markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • VirtualRenderer.updateFull(Boolean force)

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Triggers a full update of all the layers, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Triggers a full update of all the layers, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                      forceBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Required. If true, forces the changes through

                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • VirtualRenderer.updateLines(Number firstRow, Number lastRow)

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Triggers a partial update of the text, from the range given by the two parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Triggers a partial update of the text, from the range given by the two parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                        firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Required. The first row to update

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Required. The last row to update

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • VirtualRenderer.updateText()

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Triggers a full update of the text, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Triggers a full update of the text, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • VirtualRenderer.visualizeBlur()

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Blurs the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Blurs the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • VirtualRenderer.visualizeFocus()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/doc/build.js b/doc/build.js index dd64bc31..5df74581 100644 --- a/doc/build.js +++ b/doc/build.js @@ -5,6 +5,7 @@ var srcPath = __dirname + "/../lib/ace"; var options = { title : "Ace API", + parseType : "jsd", linkFormat : function(linkHtml) { var href = linkHtml.href; var o = href.match(/(.+)\.html(#.+)/); @@ -32,7 +33,7 @@ var options = { skin : "./resources/ace/templates/layout.jade", assets : "./resources/ace/skeleton", additionalObjs : "./additionalObjs.json", - exclude : ["**/*_test.js", "**/mode/**", "**/test/**", "**/theme/**", "**/worker/**"], + exclude : ["**/*_test.js", "**/mode/**", "default_commands.js", "multi_select_commands.js", "**/test/**", "**/theme/**", "**/worker/**"], index : "./index.md", disableTests: true }; @@ -45,7 +46,7 @@ panino.parse(files, options, function (err, ast) { process.exit(1); } - panino.render('html', ast, options, function (err) { + panino.render('json', ast, options, function (err) { if (err) { console.error(err); process.exit(1); diff --git a/lib/ace/ace.js b/lib/ace/ace.js index b40ab454..d31ceb3a 100644 --- a/lib/ace/ace.js +++ b/lib/ace/ace.js @@ -29,11 +29,9 @@ * ***** END LICENSE BLOCK ***** */ /** - * class Ace - * * The main class required to set up an Ace instance in the browser. * - * + * @class Ace **/ define(function(require, exports, module) { @@ -57,11 +55,9 @@ require("./placeholder"); require("./mode/folding/fold_mode"); exports.config = require("./config"); /** - * Ace.edit(el) -> Editor - * - el (String | DOMElement): Either the id of an element, or the element itself - * - * This method embeds the Ace editor into the DOM, at the element provided by `el`. - * + * Embeds the Ace editor into the DOM, at the element provided by `el`. + * @param {String | DOMElement} el Either the id of an element, or the element itself + * **/ exports.edit = function(el) { if (typeof(el) == "string") { diff --git a/lib/ace/anchor.js b/lib/ace/anchor.js index b10755bb..60c60a2d 100644 --- a/lib/ace/anchor.js +++ b/lib/ace/anchor.js @@ -35,17 +35,17 @@ var oop = require("./lib/oop"); var EventEmitter = require("./lib/event_emitter").EventEmitter; /** - * class Anchor - * + * * Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated * + * @class Anchor **/ /** * new Anchor(doc, row, column) - * - doc (Document): The document to associate with the anchor - * - row (Number): The starting row position - * - column (Number): The starting column position + * @param {Document} doc The document to associate with the anchor + * @param {Number} row The starting row position + * @param {Number} column The starting column position * * Creates a new `Anchor` and associates it with a document. * @@ -68,10 +68,8 @@ var Anchor = exports.Anchor = function(doc, row, column) { oop.implement(this, EventEmitter); /** - * Anchor.getPosition() -> Object - * * Returns an object identifying the `row` and `column` position of the current anchor. - * + * @returns Object **/ this.getPosition = function() { @@ -79,10 +77,9 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * Anchor.getDocument() -> Document - * + * * Returns the current document. - * + * @returns Document **/ this.getDocument = function() { @@ -90,11 +87,11 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * Anchor@change(e) - * - e (Object): An object containing information about the anchor position. It has two properties: - * `old`: An object describing the old Anchor position - * `value`: An object describing the new Anchor position - Both of these objects have a `row` and `column` property corresponding to the position. + * @event change + * @param {Object} e An object containing information about the anchor position. It has two properties: + - `old`: An object describing the old Anchor position + - `value`: An object describing the new Anchor position + * Both of these objects have a `row` and `column` property corresponding to the position. * * Fires whenever the anchor position changes. * @@ -169,9 +166,9 @@ var Anchor = exports.Anchor = function(doc, row, column) { /** * Anchor.setPosition(row, column, noClip) - * - row (Number): The row index to move the anchor to - * - column (Number): The column index to move the anchor to - * - noClip (Boolean): Identifies if you want the position to be clipped + * @param {Number} row The row index to move the anchor to + * @param {Number} column The column index to move the anchor to + * @param {Boolean} noClip Identifies if you want the position to be clipped * * Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped. * @@ -206,8 +203,6 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * Anchor.detach() - * * When called, the `'change'` event listener is removed. * **/ @@ -216,15 +211,14 @@ var Anchor = exports.Anchor = function(doc, row, column) { this.document.removeEventListener("change", this.$onChange); }; - /** internal, hide + /** * Anchor.clipPositionToDocument(row, column) - * - row (Number): The row index to clip the anchor to - * - column (Number): The column index to clip the anchor to + * @param {Number} row The row index to clip the anchor to + * @param {Number} column The column index to clip the anchor to * * Clips the anchor position to the specified row and column. * **/ - this.$clipPositionToDocument = function(row, column) { var pos = {}; diff --git a/lib/ace/background_tokenizer.js b/lib/ace/background_tokenizer.js index 08a46d5d..288e543a 100644 --- a/lib/ace/background_tokenizer.js +++ b/lib/ace/background_tokenizer.js @@ -38,16 +38,18 @@ var EventEmitter = require("./lib/event_emitter").EventEmitter; var MAX_LINE_LENGTH = 5000; /** - * class BackgroundTokenizer + * @class BackgroundTokenizer * - * Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. If a certain row is changed, everything below that row is re-tokenized. + * Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. + * + * If a certain row is changed, everything below that row is re-tokenized. * **/ /** * new BackgroundTokenizer(tokenizer, editor) - * - tokenizer (Tokenizer): The tokenizer to use - * - editor (Editor): The editor to associate with + * @param {Tokenizer} tokenizer The tokenizer to use + * @param {Editor} editor The editor to associate with * * Creates a new `BackgroundTokenizer` object. * @@ -98,8 +100,7 @@ var BackgroundTokenizer = function(tokenizer, editor) { oop.implement(this, EventEmitter); /** - * BackgroundTokenizer.setTokenizer(tokenizer) - * - tokenizer (Tokenizer): The new tokenizer to use + * @param {Tokenizer} tokenizer The new tokenizer to use * * Sets a new tokenizer for this object. * @@ -113,8 +114,7 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * BackgroundTokenizer.setDocument(doc) - * - doc (Document): The new document to associate with + * @param {Document} doc The new document to associate with * * Sets a new document to associate with this object. * @@ -127,21 +127,20 @@ var BackgroundTokenizer = function(tokenizer, editor) { this.stop(); }; - /** - * BackgroundTokenizer.fireUpdateEvent(firstRow, lastRow) - * - firstRow (Number): The starting row region - * - lastRow (Number): The final row region - * - * Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated. - * - **/ /** - * BackgroundTokenizer@update(e) - * - e (Object): An object containing two properties, `first` and `last`, which indicate the rows of the region being updated. + * @event update + * @param {Object} e An object containing two properties, `first` and `last`, which indicate the rows of the region being updated. * * Fires whenever the background tokeniziers between a range of rows are going to be updated. * **/ + /** + * @param {Number} firstRow The starting row region + * @param {Number} lastRow The final row region + * + * Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated. + * + **/ this.fireUpdateEvent = function(firstRow, lastRow) { var data = { first: firstRow, @@ -151,8 +150,7 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * BackgroundTokenizer.start(startRow) - * - startRow (Number): The row to start at + * @param {Number} startRow The row to start at * * Starts tokenizing at the row indicated. * @@ -194,8 +192,6 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * BackgroundTokenizer.stop() - * * Stops tokenizing. * **/ @@ -206,8 +202,7 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * BackgroundTokenizer.getTokens(row) -> [Object] - * - row (Number): The row to get tokens at + * @param {Number} row The row to get tokens at * * Gives list of tokens of the row. (tokens are cached) * @@ -217,8 +212,7 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * BackgroundTokenizer.getState(row) -> String - * - row (Number): The row to get state at + * @param {Number} row The row to get state at * * [Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState} **/ diff --git a/lib/ace/commands/command_manager.js b/lib/ace/commands/command_manager.js index 26863643..86a668e5 100644 --- a/lib/ace/commands/command_manager.js +++ b/lib/ace/commands/command_manager.js @@ -6,19 +6,17 @@ var HashHandler = require("../keyboard/hash_handler").HashHandler; var EventEmitter = require("../lib/event_emitter").EventEmitter; /** - * class CommandManager + * @class CommandManager * * - * - * **/ /** * new CommandManager(platform, commands) - * - platform (String): Identifier for the platform; must be either `'mac'` or `'win'` - * - commands (Array): A list of commands + * @param {String} platform Identifier for the platform; must be either `'mac'` or `'win'` + * @param {Array} commands A list of commands * - * TODO + * * * **/ diff --git a/lib/ace/document.js b/lib/ace/document.js index 6f1edd05..0fc89c25 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -37,16 +37,18 @@ var Range = require("./range").Range; var Anchor = require("./anchor").Anchor; /** - * class Document + * @class Document * - * Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. At its core, `Document`s are just an array of strings, with each row in the document matching up to the array index. + * Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. + * + * At its core, `Document`s are just an array of strings, with each row in the document matching up to the array index. * * **/ /** * new Document([text]) - * - text (String | Array): The starting text + * @param {String | Array} text The starting text * * Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty. * @@ -71,8 +73,7 @@ var Document = function(text) { oop.implement(this, EventEmitter); /** - * Document.setValue(text) -> Void - * - text (String): The text to use + * @param {String} text The text to use * * Replaces all the lines in the current `Document` with the value of `text`. **/ @@ -83,8 +84,6 @@ var Document = function(text) { }; /** - * Document.getValue() -> String - * * Returns all the lines in the document as a single string, split by the new line character. **/ this.getValue = function() { @@ -92,9 +91,8 @@ var Document = function(text) { }; /** - * Document.createAnchor(row, column) -> Anchor - * - row (Number): The row number to use - * - column (Number): The column number to use + * @param {Number} row The row number to use + * @param {Number} column The column number to use * * Creates a new `Anchor` to define a floating point in the document. **/ @@ -102,13 +100,12 @@ var Document = function(text) { return new Anchor(this, row, column); }; - /** internal, hide - * Document.$split(text) -> [String] - * - text (String): The text to work with - * + ([String]): A String array, with each index containing a piece of the original `text` string. + /** + * @param {String} text The text to work with + * @returns String A String array, with each index containing a piece of the original `text` string. * * Splits a string of text on any newline (`\n`) or carriage-return ('\r') characters. - * + * @method $split * **/ @@ -123,11 +120,7 @@ var Document = function(text) { }; - /** internal, hide - * Document.$detectNewLine(text) -> Void - * - * - **/ + this.$detectNewLine = function(text) { var match = text.match(/^.*?(\r\n|\r|\n)/m); if (match) { @@ -139,14 +132,13 @@ var Document = function(text) { /** * Document.getNewLineCharacter() -> String - * + (String): If `newLineMode == windows`, `\r\n` is returned.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * If `newLineMode == unix`, `\n` is returned.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * @returns {String} If `newLineMode == windows`, `\r\n` is returned. + * If `newLineMode == unix`, `\n` is returned. * If `newLineMode == auto`, the value of `autoNewLine` is returned. * * Returns the newline character that's being used, depending on the value of `newLineMode`. * * - * **/ this.getNewLineCharacter = function() { switch (this.$newLineMode) { @@ -164,8 +156,7 @@ var Document = function(text) { this.$autoNewLine = "\n"; this.$newLineMode = "auto"; /** - * Document.setNewLineMode(newLineMode) -> Void - * - newLineMode(String): [The newline mode to use; can be either `windows`, `unix`, or `auto`]{: #Document.setNewLineMode.param} + * @param {String} newLineMode [The newline mode to use; can be either `windows`, `unix`, or `auto`]{: #Document.setNewLineMode.param} * * [Sets the new line mode.]{: #Document.setNewLineMode.desc} **/ @@ -177,8 +168,6 @@ var Document = function(text) { }; /** - * Document.getNewLineMode() -> String - * * [Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode} * **/ @@ -187,8 +176,7 @@ var Document = function(text) { }; /** - * Document.isNewLine(text) -> Boolean - * - text (String): The text to check + * @param {String} text The text to check * * Returns `true` if `text` is a newline character (either `\r\n`, `\r`, or `\n`). * @@ -198,8 +186,7 @@ var Document = function(text) { }; /** - * Document.getLine(row) -> String - * - row (Number): The row index to retrieve + * @param {Number} row The row index to retrieve * * Returns a verbatim copy of the given line as it is in the document * @@ -209,9 +196,8 @@ var Document = function(text) { }; /** - * Document.getLines(firstRow, lastRow) -> [String] - * - firstRow (Number): The first row index to retrieve - * - lastRow (Number): The final row index to retrieve + * @param {Number} firstRow The first row index to retrieve + * @param {Number} lastRow The final row index to retrieve * * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. * @@ -221,8 +207,6 @@ var Document = function(text) { }; /** - * Document.getAllLines() -> [String] - * * Returns all lines in the document as string array. Warning: The caller should not modify this array! **/ this.getAllLines = function() { @@ -230,8 +214,6 @@ var Document = function(text) { }; /** - * Document.getLength() -> Number - * * Returns the number of rows in the document. **/ this.getLength = function() { @@ -239,8 +221,7 @@ var Document = function(text) { }; /** - * Document.getTextRange(range) -> String - * - range (Range): The range to work with + * @param {Range} range The range to work with * * [Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc} **/ @@ -257,11 +238,6 @@ var Document = function(text) { } }; - /** internal, hide - * Document.$clipPosition(position) -> Number - * - * - **/ this.$clipPosition = function(position) { var length = this.getLength(); if (position.row >= length) { @@ -272,13 +248,12 @@ var Document = function(text) { }; /** - * Document.insert(position, text) -> Number - * - position (Number): The position to start inserting at - * - text (String): A chunk of text to insert - * + (Number): The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. + * @param {Number} position The position to start inserting at + * @param {String} text A chunk of text to insert + * @returns {Number} The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. + * * Inserts a block of `text` and the indicated `position`. * - * **/ this.insert = function(position, text) { if (!text || text.length === 0) @@ -304,21 +279,8 @@ var Document = function(text) { }; /** - * Document.insertLines(row, lines) -> Object - * - row (Number): The index of the row to insert at - * - lines (Array): An array of strings - * + (Object): Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{row: endRow, column: 0}```
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * If `lines` is empty, this function returns an object containing the current row, and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{row: row, column: 0}``` - * - * Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event. - * - * - **/ - /** - * Document@change(e) - * - e (Object): Contains at least one property called `"action"`. `"action"` indicates the action that triggered the change. Each action also has a set of additional properties. + * @event change + * @param {Object} e Contains at least one property called `"action"`. `"action"` indicates the action that triggered the change. Each action also has a set of additional properties. * * Fires whenever the document changes. * @@ -339,6 +301,22 @@ var Document = function(text) { * * `text`: the text that's being removed * **/ + /** + * @param {Number} row The index of the row to insert at + * @param {Array} lines An array of strings + * @returns Object Contains the final row and column, like this: + * ``` + * {row: endRow, column: 0} + * ``` + * If `lines` is empty, this function returns an object containing the current row, and column, like this: + * ``` + * {row: row, column: 0} + * ``` + * + * Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event. + * + * + **/ this.insertLines = function(row, lines) { if (lines.length == 0) return {row: row, column: 0}; @@ -365,10 +343,11 @@ var Document = function(text) { }; /** - * Document.insertNewLine(position) -> Object - * - position (String): The position to insert at - * + (Object): Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{row: endRow, column: 0}``` + * @param {String} position The position to insert at + * @returns {Object} Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * ``` + * {row: endRow, column: 0} + * ``` * * Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event. * @@ -398,12 +377,13 @@ var Document = function(text) { }; /** - * Document.insertInLine(position, text) -> Object | Number - * - position (Number): The position to insert at - * - text (String): A chunk of text - * + (Object): Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{row: endRow, column: 0}``` - * + (Number): If `text` is empty, this function returns the value of `position` + * @param {Number} position The position to insert at + * @param {String} text A chunk of text + * @returns {Object} Returns an object containing the final row and column, like this: + * ``` + * {row: endRow, column: 0} + * ``` + * @returns {Number} If `text` is empty, this function returns the value of `position` * * Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event. * @@ -435,9 +415,8 @@ var Document = function(text) { }; /** - * Document.remove(range) -> Object - * - range (Range): A specified Range to remove - * + (Object): Returns the new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. + * @param {Range} range A specified Range to remove + * @returns {Object} Returns the new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. * * Removes the `range` from the document. * @@ -476,11 +455,10 @@ var Document = function(text) { }; /** - * Document.removeInLine(row, startColumn, endColumn) -> Object - * - row (Number): The row to remove from - * - startColumn (Number): The column to start removing at - * - endColumn (Number): The column to stop removing at - * + (Object): Returns an object containing `startRow` and `startColumn`, indicating the new row and column values.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              If `startColumn` is equal to `endColumn`, this function returns nothing. + * @param {Number} row The row to remove from + * @param {Number} startColumn The column to start removing at + * @param {Number} endColumn The column to stop removing at + * @returns {Object} Returns an object containing `startRow` and `startColumn`, indicating the new row and column values.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              If `startColumn` is equal to `endColumn`, this function returns nothing. * * Removes the specified columns from the `row`. This method also triggers the `'change'` event. * @@ -506,10 +484,9 @@ var Document = function(text) { }; /** - * Document.removeLines(firstRow, lastRow) -> [String] - * - firstRow (Number): The first row to be removed - * - lastRow (Number): The last row to be removed - * + ([String]): Returns all the removed lines. + * @param {Number} firstRow The first row to be removed + * @param {Number} lastRow The last row to be removed + * @returns {[String]} Returns all the removed lines. * * Removes a range of full lines. This method also triggers the `'change'` event. * @@ -530,8 +507,7 @@ var Document = function(text) { }; /** - * Document.removeNewLine(row) -> Void - * - row (Number): The row to check + * @param {Number} row The row to check * * Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event. * @@ -554,10 +530,9 @@ var Document = function(text) { }; /** - * Document.replace(range, text) -> Object - * - range (Range): A specified Range to replace - * - text (String): The new text to use as a replacement - * + (Object): Returns an object containing the final row and column, like this: + * @param {Range} range A specified Range to replace + * @param {String} text The new text to use as a replacement + * @returns {Object} Returns an object containing the final row and column, like this: * {row: endRow, column: 0} * If the text and range are empty, this function returns an object containing the current `range.start` value. * If the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value. @@ -586,9 +561,7 @@ var Document = function(text) { }; /** - * Document.applyDeltas(deltas) -> Void - * - * Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`. + * =Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`. **/ this.applyDeltas = function(deltas) { for (var i=0; i Void - * * Reverts any changes previously applied. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`. **/ this.revertDeltas = function(deltas) { diff --git a/lib/ace/edit_session.js b/lib/ace/edit_session.js index dffcd73d..dd74e31d 100644 --- a/lib/ace/edit_session.js +++ b/lib/ace/edit_session.js @@ -44,95 +44,97 @@ var BackgroundTokenizer = require("./background_tokenizer").BackgroundTokenizer; var SearchHighlight = require("./search_highlight").SearchHighlight; /** - * class EditSession + * @class EditSession * - * Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. `EditSession` can be attached to only one [[Document `Document`]]. Same `Document` can be attached to several `EditSession`s. + * Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. + * + * `EditSession` can be attached to only one [[Document `Document`]]. Same `Document` can be attached to several `EditSession`s. * **/ // events /** - * EditSession@change(e) - * - e (Object): An object containing a `delta` of information about the change. + * @event change + * @param {Object} e An object containing a `delta` of information about the change. * * Emitted when the document changes. **/ /** - * EditSession@changeTabSize() + * @event changeTabSize * * Emitted when the tab size changes, via [[EditSession.setTabSize]]. **/ /** - * EditSession@changeOverwrite() + * @event changeOverwrite * * Emitted when the ability to overwrite text changes, via [[EditSession.setOverwrite]]. **/ /** - * EditSession@changeBreakpoint() + * @event changeBreakpoint * * Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change. **/ /** - * EditSession@changeFrontMarker() + * @event changeFrontMarker * * Emitted when a front marker changes. **/ /** - * EditSession@changeBackMarker() + * @event changeBackMarker * * Emitted when a back marker changes. **/ /** - * EditSession@changeAnnotation() + * @event changeAnnotation * * Emitted when an annotation changes, like through [[EditSession.setAnnotations]]. **/ /** - * EditSession@tokenizerUpdate(e) - * - e (Object): An object containing one property, `"data"`, that contains information about the changing rows + * @event tokenizerUpdate + * @param {Object} e An object containing one property, `"data"`, that contains information about the changing rows * * Emitted when a background tokenizer asynchronously processes new rows. * **/ -/** hide - * EditSession@loadMode(e) - * +/** + * @event loadMode + * @param e * * **/ /** - * EditSession@changeMode() + * @event changeMode * * Emitted when the current mode changes. * **/ /** - * EditSession@changeWrapMode() + * @event changeWrapMode * * Emitted when the wrap mode changes. * **/ /** - * EditSession@changeWrapLimit() + * @event changeWrapLimit * * Emitted when the wrapping limit changes. * **/ /** - * EditSession@changeFold(e) + * @event changeFold * * Emitted when a code fold is added or removed. * **/ /** - * EditSession@changeScrollTop(scrollTop) - * - scrollTop (Number): The new scroll top value + * @event changeScrollTop + * @param {Number} scrollTop The new scroll top value * * Emitted when the scroll top changes. **/ /** - * EditSession@changeScrollLeft(scrollLeft) - * - scrollLeft (Number): The new scroll left value + * @event changeScrollLeft + * @param {Number} scrollLeft The new scroll left value * * Emitted when the scroll left changes. **/ @@ -140,8 +142,8 @@ var SearchHighlight = require("./search_highlight").SearchHighlight; /** * new EditSession(text, mode) - * - text (Document | String): If `text` is a `Document`, it associates the `EditSession` with it. Otherwise, a new `Document` is created, with the initial text - * - mode (TextMode): The inital language mode to use for the document + * @param {Document | String} text If `text` is a `Document`, it associates the `EditSession` with it. Otherwise, a new `Document` is created, with the initial text + * @param {TextMode} mode The inital language mode to use for the document * * Sets up a new `EditSession` and associates it with the given `Document` and `TextMode`. * @@ -165,11 +167,11 @@ var EditSession = function(text, mode) { } this.on("changeFold", this.onChangeFold.bind(this)); this.$onChange = this.onChange.bind(this); - + if (typeof text != "object" || !text.getLine) text = new Document(text); - this.setDocument(text); + this.setDocument(text); this.selection = new Selection(this); this.setMode(mode); @@ -181,8 +183,7 @@ var EditSession = function(text, mode) { oop.implement(this, EventEmitter); /** - * EditSession.setDocument(doc) - * - doc (Document): The new `Document` to use + * @param {Document} doc The new `Document` to use * * Sets the `EditSession` to point to a new `Document`. If a `BackgroundTokenizer` exists, it also points to `doc`. * @@ -210,9 +211,8 @@ var EditSession = function(text, mode) { return this.doc; }; - /** internal, hide - * EditSession.$resetRowCache(row) - * - row (Number): The row to work with + /** + * @param {Number} row The row to work with * * * @@ -288,8 +288,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.setValue(text) - * - text (String): The new text to place + * @param {String} text The new text to place * * Sets the session text. * @@ -306,16 +305,15 @@ var EditSession = function(text, mode) { this.getUndoManager().reset(); }; - /** alias of: EditSession.toString - * EditSession.getValue() -> String - * + /** * Returns the current [[Document `Document`]] as a string. - * + * @method toString + * @alias EditSession.toString + * **/ - /** alias of: EditSession.getValue - * EditSession.toString() -> String - * - * Returns the current [[Document `Document`]] as a string. + + /** + * Returns the current [[Document `Document`]] as a string. * **/ this.getValue = @@ -324,28 +322,26 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getSelection() -> Selection - * * Returns the string of the current selection. **/ this.getSelection = function() { return this.selection; }; - /** related to: BackgroundTokenizer.getState - * EditSession.getState(row) -> Array - * - row (Number): The row to start at + /** + * @param {Number} row The row to start at * * {:BackgroundTokenizer.getState} * + * @related BackgroundTokenizer.getState **/ this.getState = function(row) { return this.bgTokenizer.getState(row); }; - /** related to: BackgroundTokenizer.getTokens - * EditSession.getTokens(row) -> Array - * - row (Number): The row to start at + /** + * + * @param {Number} row The row to start at * * Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows. * @@ -355,9 +351,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getTokenAt(row, column) -> Object - * - row (Number): The row number to retrieve from - * - column (Number): The column number to retrieve from + * @param {Number} row The row number to retrieve from + * @param {Number} column The column number to retrieve from * * Returns an object indicating the token at the current row. The object has two properties: `index` and `start`. **/ @@ -381,10 +376,9 @@ var EditSession = function(text, mode) { token.start = c - token.value.length; return token; }; - + /** - * EditSession.setUndoManager(undoManager) - * - undoManager (UndoManager): The new undo manager + * @param {UndoManager} undoManager The new undo manager * * Sets the undo manager. **/ @@ -399,11 +393,7 @@ var EditSession = function(text, mode) { if (undoManager) { var self = this; - /** internal, hide - * EditSession.$syncInformUndoManager() - * - * - **/ + this.$syncInformUndoManager = function() { self.$informUndoManager.cancel(); @@ -444,17 +434,13 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getUndoManager() -> UndoManager - * * Returns the current undo manager. **/ this.getUndoManager = function() { return this.$undoManager || this.$defaultUndoManager; - }, + }; /** - * EditSession.getTabString() -> String - * * Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by [[EditSession.getTabSize `getTabSize()`]]); otherwise it's simply `'\t'`. **/ this.getTabString = function() { @@ -467,8 +453,7 @@ var EditSession = function(text, mode) { this.$useSoftTabs = true; /** - * EditSession.setUseSoftTabs(useSoftTabs) - * - useSoftTabs (Boolean): Value indicating whether or not to use soft tabs + * @param {Boolean} useSoftTabs Value indicating whether or not to use soft tabs * * Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\t'`). * @@ -480,8 +465,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getUseSoftTabs() -> Boolean - * * Returns `true` if soft tabs are being used, `false` otherwise. * **/ @@ -491,8 +474,7 @@ var EditSession = function(text, mode) { this.$tabSize = 4; /** - * EditSession.setTabSize(tabSize) - * - tabSize (Number): The new tab size + * @param {Number} tabSize The new tab size * * Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event. **/ @@ -506,8 +488,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getTabSize() -> Number - * * Returns the current tab size. **/ this.getTabSize = function() { @@ -515,8 +495,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.isTabStop(position) -> Boolean - * - position (Object): The position to check + * @param {Object} position The position to check * * Returns `true` if the character at the position is a soft tab. **/ @@ -526,8 +505,7 @@ var EditSession = function(text, mode) { this.$overwrite = false; /** - * EditSession.setOverwrite(overwrite) - * - overwrite (Boolean): Defines wheter or not to set overwrites + * @param {Boolean} overwrite Defines wheter or not to set overwrites * * Pass in `true` to enable overwrites in your session, or `false` to disable. * @@ -542,8 +520,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getOverwrite() -> Boolean - * * Returns `true` if overwrites are enabled; `false` otherwise. **/ this.getOverwrite = function() { @@ -551,8 +527,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.toggleOverwrite() - * * Sets the value of overwrite to the opposite of whatever it currently is. **/ this.toggleOverwrite = function() { @@ -560,9 +534,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.addGutterDecoration(row, className) -> Void - * - row (Number): The row number - * - className (String): The class to add + * @param {Number} row The row number + * @param {String} className The class to add * * Adds `className` to the `row`, to be used for CSS stylings and whatnot. **/ @@ -574,9 +547,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.removeGutterDecoration(row, className)-> Void - * - row (Number): The row number - * - className (String): The class to add + * @param {Number} row The row number + * @param {String} className The class to add * * Removes `className` from the `row`. **/ @@ -586,17 +558,15 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getBreakpoints() -> Array - * * Returns an array of numbers, indicating which rows have breakpoints. + * @returns [Number] **/ this.getBreakpoints = function() { return this.$breakpoints; }; /** - * EditSession.setBreakpoints(rows) - * - rows (Array): An array of row indicies + * @param {Array} rows An array of row indicies * * Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event. * @@ -610,8 +580,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.clearBreakpoints() - * * Removes all breakpoints on the rows. This function also emites the `'changeBreakpoint'` event. **/ this.clearBreakpoints = function() { @@ -620,9 +588,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.setBreakpoint(row, className) - * - row (Number): A row index - * - className (String): Class of the breakpoint + * @param {Number} row A row index + * @param {String} className Class of the breakpoint * * Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. **/ @@ -637,8 +604,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.clearBreakpoint(row) - * - row (Number): A row index + * @param {Number} row A row index * * Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. **/ @@ -648,14 +614,13 @@ var EditSession = function(text, mode) { }; /** - * EditSession.addMarker(range, clazz, type = "line", inFront) -> Number - * - range (Range): Define the range of the marker - * - clazz (String): Set the CSS class for the marker - * - type (Function | String): Identify the type of the marker - * - inFront (Boolean): Set to `true` to establish a front marker + * @param {Range} range Define the range of the marker + * @param {String} clazz Set the CSS class for the marker + * @param {Function | String} type Identify the type of the marker + * @param {Boolean} inFront Set to `true` to establish a front marker * * Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires. - * + * @return Number **/ this.addMarker = function(range, clazz, type, inFront) { var id = this.$markerId++; @@ -681,11 +646,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.addDynamicMarker(marker, inFront) -> Object - * - marker (Object): object with update method - * - inFront (Boolean): Set to `true` to establish a front marker + * @param {Object} marker object with update method + * @param {Boolean} inFront Set to `true` to establish a front marker * * Adds a dynamic marker to the session. + * @return Object The added marker **/ this.addDynamicMarker = function(marker, inFront) { if (!marker.update) @@ -706,8 +671,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.removeMarker(markerId) - * - markerId (Number): A number representing a marker + * @param {Number} markerId A number representing a marker * * Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted. * @@ -725,11 +689,10 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getMarkers(inFront) -> Array - * - inFront (Boolean): If `true`, indicates you only want front markers; `false` indicates only back markers + * @param {Boolean} inFront If `true`, indicates you only want front markers; `false` indicates only back markers * * Returns an array containing the IDs of all the markers, either front or back. - * + * @returns Array **/ this.getMarkers = function(inFront) { return inFront ? this.$frontMarkers : this.$backMarkers; @@ -769,8 +732,7 @@ var EditSession = function(text, mode) { * } */ /** - * EditSession.setAnnotations(annotations) - * - annotations (Array): A list of annotations + * @param {Array} annotations A list of annotations * * Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event. **/ @@ -780,17 +742,14 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getAnnotations() -> Object - * * Returns the annotations for the `EditSession`. + * @returns Object **/ this.getAnnotations = function() { return this.$annotations || []; }; /** - * EditSession.clearAnnotations() - * * Clears all the annotations for this session. This function also triggers the `'changeAnnotation'` event. **/ this.clearAnnotations = function() { @@ -798,9 +757,9 @@ var EditSession = function(text, mode) { this._emit("changeAnnotation", {}); }; - /** internal, hide + /** * EditSession.$detectNewLine(text) - * - text (String): A block of text + * @param {String} text A block of text * * If `text` contains either the newline (`\n`) or carriage-return ('\r') characters, `$autoNewLine` stores that value. * @@ -815,12 +774,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getWordRange(row, column) -> Range - * - row (Number): The row to start at - * - column (Number): The column to start at + * @param {Number} row The row to start at + * @param {Number} column The column to start at * * Given a starting row and column, this method returns the `Range` of the first word boundary it finds. - * + * @returns Range **/ this.getWordRange = function(row, column) { var line = this.getLine(row); @@ -857,11 +815,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getAWordRange(row, column) -> Range - * - row (Number): The row number to start from - * - column (Number): The column number to start from + * @param {Number} row The row number to start from + * @param {Number} column The column number to start from * * Gets the range of a word, including its right whitespace. + * @return Range **/ this.getAWordRange = function(row, column) { var wordRange = this.getWordRange(row, column); @@ -873,20 +831,20 @@ var EditSession = function(text, mode) { return wordRange; }; - /** related to: Document.setNewLineMode - * EditSession.setNewLineMode(newLineMode) - * - newLineMode (String): {:Document.setNewLineMode.param} + /** + * @param {String} newLineMode {:Document.setNewLineMode.param} * * {:Document.setNewLineMode.desc} + * @related Document.setNewLineMode **/ this.setNewLineMode = function(newLineMode) { this.doc.setNewLineMode(newLineMode); }; - /** related to: Document.getNewLineMode - * EditSession.getNewLineMode() -> String - * + /** + * * Returns the current new line mode. + * @related Document.getNewLineMode **/ this.getNewLineMode = function() { return this.doc.getNewLineMode(); @@ -895,8 +853,7 @@ var EditSession = function(text, mode) { this.$useWorker = true; /** - * EditSession.setUseWorker(useWorker) - * - useWorker (Boolean): Set to `true` to use a worker + * @param {Boolean} useWorker Set to `true` to use a worker * * Identifies if you want to use a worker for the `EditSession`. * @@ -913,8 +870,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getUseWorker() -> Boolean - * * Returns `true` if workers are being used. **/ this.getUseWorker = function() { @@ -922,8 +877,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.onReloadTokenizer(e) - * * Reloads all the tokens on the current session. This function calls [[BackgroundTokenizer.start `BackgroundTokenizer.start ()`]] to all the rows; it also emits the `'tokenizerUpdate'` event. **/ this.onReloadTokenizer = function(e) { @@ -998,8 +951,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.setMode(mode) - * - mode (TextMode): Set a new text mode + * @param {TextMode} mode Set a new text mode * * Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted. * @@ -1061,11 +1013,7 @@ var EditSession = function(text, mode) { this._emit("changeMode"); }; - /** internal, hide - * EditSession.stopWorker() - * - * - **/ + this.$stopWorker = function() { if (this.$worker) this.$worker.terminate(); @@ -1073,11 +1021,7 @@ var EditSession = function(text, mode) { this.$worker = null; }; - /** internal, hide - * EditSession.$startWorker() - * - * - **/ + this.$startWorker = function() { if (typeof Worker !== "undefined" && !require.noWorker) { try { @@ -1093,9 +1037,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getMode() -> TextMode - * * Returns the current text mode. + * @returns Mode The current text mode **/ this.getMode = function() { return this.$mode; @@ -1103,8 +1046,7 @@ var EditSession = function(text, mode) { this.$scrollTop = 0; /** - * EditSession.setScrollTop(scrollTop) - * - scrollTop (Number): The new scroll top value + * @param {Number} scrollTop The new scroll top value * * This function sets the scroll top value. It also emits the `'changeScrollTop'` event. **/ @@ -1118,9 +1060,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getScrollTop() -> Number - * * [Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop} + * @returns Number **/ this.getScrollTop = function() { return this.$scrollTop; @@ -1128,8 +1069,6 @@ var EditSession = function(text, mode) { this.$scrollLeft = 0; /** - * EditSession.setScrollLeft(scrollLeft) - * * [Sets the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.setScrollLeft} **/ this.setScrollLeft = function(scrollLeft) { @@ -1142,18 +1081,16 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getScrollLeft() -> Number - * * [Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft} + * @returns Number **/ this.getScrollLeft = function() { return this.$scrollLeft; }; /** - * EditSession.getScreenWidth() -> Number - * * Returns the width of the screen. + * @returns Number **/ this.getScreenWidth = function() { this.$computeWidth(); @@ -1194,53 +1131,51 @@ var EditSession = function(text, mode) { } }; - /** related to: Document.getLine - * EditSession.getLine(row) -> String - * - row (Number): The row to retrieve from + /** + * @param {Number} row The row to retrieve from * * Returns a verbatim copy of the given line as it is in the document + * @returns String * **/ this.getLine = function(row) { return this.doc.getLine(row); }; - /** related to: Document.getLines - * EditSession.getLines(firstRow, lastRow) -> Array - * - firstRow (Number): The first row index to retrieve - * - lastRow (Number): The final row index to retrieve + /** + * @param {Number} firstRow The first row index to retrieve + * @param {Number} lastRow The final row index to retrieve * * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. + * @returns [String] * **/ this.getLines = function(firstRow, lastRow) { return this.doc.getLines(firstRow, lastRow); }; - /** related to: Document.getLength - * EditSession.getLength()-> Number - * - * Returns the number of rows in the document. + /** + * Returns the number of rows in the document. + * @returns Number **/ this.getLength = function() { return this.doc.getLength(); }; - /** related to: Document.getTextRange - * EditSession.getTextRange(range) -> String - * - range (Range): The range to work with + /** + * @param {Range} range The range to work with * * {:Document.getTextRange.desc} + * @returns Range **/ this.getTextRange = function(range) { return this.doc.getTextRange(range || this.selection.getRange()); }; - /** related to: Document.insert - * EditSession.insert(position, text) -> Number - * - position (Number): The position to start inserting at - * - text (String): A chunk of text to insert - * + (Number): The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. + /** + * @param {Number} position The position to start inserting at + * @param {String} text A chunk of text to insert + * @returns {Number} The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. * * Inserts a block of `text` and the indicated `position`. * @@ -1250,12 +1185,12 @@ var EditSession = function(text, mode) { return this.doc.insert(position, text); }; - /** related to: Document.remove - * EditSession.remove(range) -> Object - * - range (Range): A specified Range to remove - * + (Object): The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. + /** + * @param {Range} range A specified Range to remove + * @returns {Object} The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. * * Removes the `range` from the document. + * @related Document.remove * * **/ @@ -1264,11 +1199,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.undoChanges(deltas, dontSelect) -> Range - * - deltas (Array): An array of previous changes - * - dontSelect (Boolean): [If `true`, doesn't select the range of where the change occured]{: #dontSelect} + * @param {Array} deltas An array of previous changes + * @param {Boolean} dontSelect [If `true`, doesn't select the range of where the change occured]{: #dontSelect} * * Reverts previous changes to your document. + * @returns Range **/ this.undoChanges = function(deltas, dontSelect) { if (!deltas.length) @@ -1297,11 +1232,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.redoChanges(deltas, dontSelect) -> Range - * - deltas (Array): An array of previous changes - * - dontSelect (Boolean): {:dontSelect} + * @param {Array} deltas An array of previous changes + * @param {Boolean} dontSelect {:dontSelect} * * Re-implements a previously undone change to your document. + * @returns Range **/ this.redoChanges = function(deltas, dontSelect) { if (!deltas.length) @@ -1326,20 +1261,14 @@ var EditSession = function(text, mode) { }; /** - * EditSession.setUndoSelect(enable) - * - enable (Boolean): If `true`, selects the range of the reinserted change + * @param {Boolean} enable If `true`, selects the range of the reinserted change * - * ENables or disables highlighting of the range where an undo occured. + * Enables or disables highlighting of the range where an undo occured. **/ this.setUndoSelect = function(enable) { this.$undoSelect = enable; }; - /** internal, hide - * EditSession.$getUndoSelection(deltas, isUndo, lastUndoRange) -> Range - * - * - **/ this.$getUndoSelection = function(deltas, isUndo, lastUndoRange) { function isInsert(delta) { var insert = @@ -1392,19 +1321,22 @@ var EditSession = function(text, mode) { } return range; - }, + }; - /** related to: Document.replace + /** related to: * EditSession.replace(range, text) -> Object - * - range (Range): A specified Range to replace - * - text (String): The new text to use as a replacement - * + (Object): Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{row: endRow, column: 0}```
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * If the text and range are empty, this function returns an object containing the current `range.start` value.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * @param {Range} range A specified Range to replace + * @param {String} text The new text to use as a replacement + * @returns Object An object containing the final row and column, like this: + * ``` + * {row: endRow, column: 0} + * ``` + * If the text and range are empty, this function returns an object containing the current `range.start` value. * If the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value. * * Replaces a range in the document with the new `text`. - * + * + * @related Document.replace * * **/ @@ -1413,10 +1345,9 @@ var EditSession = function(text, mode) { }; /** - * EditSession.moveText(fromRange, toPosition) -> Range - * - fromRange (Range): The range of text you want moved within the document - * - toPosition (Object): The location (row and column) where you want to move the text to - * + (Range): The new range where the text was moved to. + * @param {Range} fromRange The range of text you want moved within the document + * @param {Object} toPosition The location (row and column) where you want to move the text to + * @returns {Range} The new range where the text was moved to. * Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this: * * { row: newRowLocation, column: newColumnLocation } @@ -1455,10 +1386,9 @@ var EditSession = function(text, mode) { }; /** - * EditSession.indentRows(startRow, endRow, indentString) - * - startRow (Number): Starting row - * - endRow (Number): Ending row - * - indentString (String): The indent token + * @param {Number} startRow Starting row + * @param {Number} endRow Ending row + * @param {String} indentString The indent token * * Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`. * @@ -1472,8 +1402,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.outdentRows(range) - * - range (Range): A range of rows + * @param {Range} range A range of rows * * Outdents all the rows defined by the `start` and `end` properties of `range`. * @@ -1502,14 +1431,13 @@ var EditSession = function(text, mode) { } }; - /** related to: Document.insertLines - * EditSession.moveLinesUp(firstRow, lastRow) -> Number - * - firstRow (Number): The starting row to move up - * - lastRow (Number): The final row to move up - * + (Number): If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. + /** + * @param {Number} firstRow The starting row to move up + * @param {Number} lastRow The final row to move up + * @returns {Number} If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. * * Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`. - * + * @related Document.insertLines * **/ this.moveLinesUp = function(firstRow, lastRow) { @@ -1520,14 +1448,14 @@ var EditSession = function(text, mode) { return -1; }; - /** related to: Document.insertLines - * EditSession.moveLinesDown(firstRow, lastRow) -> Number - * - firstRow (Number): The starting row to move down - * - lastRow (Number): The final row to move down - * + (Number): If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. - * + /** + * @param {Number} firstRow The starting row to move down + * @param {Number} lastRow The final row to move down + * @returns {Number} If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. * + * Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`. * + * @related Document.insertLines **/ this.moveLinesDown = function(firstRow, lastRow) { if (lastRow >= this.doc.getLength()-1) return 0; @@ -1538,10 +1466,9 @@ var EditSession = function(text, mode) { }; /** - * EditSession.duplicateLines(firstRow, lastRow) -> Number - * - firstRow (Number): The starting row to duplicate - * - lastRow (Number): The final row to duplicate - * + (Number): Returns the number of new rows added; in other words, `lastRow - firstRow + 1`. + * @param {Number} firstRow The starting row to duplicate + * @param {Number} lastRow The final row to duplicate + * @returns {Number} Returns the number of new rows added; in other words, `lastRow - firstRow + 1`. * * Duplicates all the text between `firstRow` and `lastRow`. * @@ -1626,8 +1553,7 @@ var EditSession = function(text, mode) { }; /** - * EditSession.setUseWrapMode(useWrapMode) - * - useWrapMode (Boolean): Enable (or disable) wrap mode + * @param {Boolean} useWrapMode Enable (or disable) wrap mode * * Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted. **/ @@ -1665,9 +1591,8 @@ var EditSession = function(text, mode) { // in that direction. Or set both parameters to the same number to pin // the limit to that value. /** - * EditSession.setWrapLimitRange(min, max) - * - min (Number): The minimum wrap value (the left side wrap) - * - max (Number): The maximum wrap value (the right side wrap) + * @param {Number} min The minimum wrap value (the left side wrap) + * @param {Number} max The maximum wrap value (the right side wrap) * * Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event. **/ @@ -1681,11 +1606,12 @@ var EditSession = function(text, mode) { } }; - /** internal, hide - * EditSession.adjustWrapLimit(desiredLimit) -> Boolean - * - desiredLimit (Number): The new wrap limit - * + /** + * @param {Number} desiredLimit The new wrap limit + * @returns {Boolean} + * * This should generally only be called by the renderer when a resize is detected. + * @private **/ this.adjustWrapLimit = function(desiredLimit) { var wrapLimit = this.$constrainWrapLimit(desiredLimit); @@ -1702,11 +1628,6 @@ var EditSession = function(text, mode) { return false; }; - /** internal, hide - * EditSession.$constrainWrapLimit(wrapLimit) - * - * - **/ this.$constrainWrapLimit = function(wrapLimit) { var min = this.$wrapLimitRange.min; if (min) @@ -1721,8 +1642,6 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getWrapLimit() -> Number - * * Returns the value of wrap limit. **/ this.getWrapLimit = function() { @@ -1730,12 +1649,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getWrapLimitRange() -> Object - * * Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this: * * { min: wrapLimitRange_min, max: wrapLimitRange_max } * + * @returns Object **/ this.getWrapLimitRange = function() { // Avoid unexpected mutation by returning a copy @@ -1745,11 +1663,6 @@ var EditSession = function(text, mode) { }; }; - /** internal, hide - * EditSession.$updateInternalDataOnChange() - * - * - **/ this.$updateInternalDataOnChange = function(e) { var useWrapMode = this.$useWrapMode; var len; @@ -1877,10 +1790,6 @@ var EditSession = function(text, mode) { this.$rowLengthCache[lastRow] = null; }; - /** internal, hide - * EditSession.$updateWrapData(firstRow, lastRow) - * - **/ this.$updateWrapData = function(firstRow, lastRow) { var lines = this.doc.getAllLines(); var tabSize = this.getTabSize(); @@ -1939,11 +1848,7 @@ var EditSession = function(text, mode) { TAB = 11, TAB_SPACE = 12; - /** internal, hide - * EditSession.$computeWrapSplits(tokens, wrapLimit) -> Array - * - * - **/ + this.$computeWrapSplits = function(tokens, wrapLimit) { if (tokens.length == 0) { return []; @@ -2060,10 +1965,9 @@ var EditSession = function(text, mode) { return splits; }; - /** internal, hide - * EditSession.$getDisplayTokens(str, offset) -> Array - * - str (String): The string to check - * - offset (Number): The value to start at + /** + * @param {String} str The string to check + * @param {Number} offset The value to start at * * Given a string, returns an array of the display characters, including tabs and spaces. **/ @@ -2098,12 +2002,11 @@ var EditSession = function(text, mode) { return arr; }; - /** internal, hide - * EditSession.$getStringScreenWidth(str, maxScreenColumn, screenColumn) -> [Number] - * - str (String): The string to calculate the screen width of + /** + * @param {String} str The string to calculate the screen width of * - maxScreenColumn (Number): * - screenColumn (Number): - * + ([Number]): Returns an `int[]` array with two elements:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * @returns {[Number]} Returns an `int[]` array with two elements:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * The first position indicates the number of columns for `str` on screen.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * The second value contains the position of the document column that this function read until. * @@ -2140,11 +2043,11 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getRowLength(row) -> Number - * - row (Number): The row number to check + * @param {Number} row The row number to check * * * Returns number of screenrows in a wrapped line. + * @returns Number **/ this.getRowLength = function(row) { if (!this.$useWrapMode || !this.$wrapData[row]) { @@ -2154,21 +2057,20 @@ var EditSession = function(text, mode) { } }; - /** internal, hide, related to: EditSession.documentToScreenColumn - * EditSession.getScreenLastRowColumn(screenRow) -> Number - * - screenRow (Number): The screen row to check + /** + * @param {Number} screenRow The screen row to check * * Returns the column position (on screen) for the last character in the provided row. + * @related EditSession.documentToScreenColumn **/ this.getScreenLastRowColumn = function(screenRow) { var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE); return this.documentToScreenColumn(pos.row, pos.column); }; - /** internal, hide - * EditSession.getDocumentLastRowColumn(docRow, docColumn) -> Number - * - docRow (Number): - * - docColumn (Number): + /** + * @param docRow {Number} + * @param docColumn {Number} * **/ this.getDocumentLastRowColumn = function(docRow, docColumn) { @@ -2176,8 +2078,9 @@ var EditSession = function(text, mode) { return this.getScreenLastRowColumn(screenRow); }; - /** internal, hide - * EditSession.getDocumentLastRowColumnPosition(docRow, docColumn) -> Number + /** + * @param docRow {Number} + * @param docColumn {Number} * **/ this.getDocumentLastRowColumnPosition = function(docRow, docColumn) { @@ -2185,7 +2088,7 @@ var EditSession = function(text, mode) { return this.screenToDocumentPosition(screenRow, Number.MAX_VALUE / 10); }; - /** internal, hide + /** * EditSession.getRowSplitData(row) -> undefined | String * **/ @@ -2198,41 +2101,32 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getScreenTabSize(screenColumn) -> Number - * - screenColumn (Number): The screen column to check + * @param {Number} screenColumn The screen column to check * * The distance to the next tab stop at the specified screen column. + * @returns Number **/ this.getScreenTabSize = function(screenColumn) { return this.$tabSize - screenColumn % this.$tabSize; }; - /** internal, hide - * EditSession.screenToDocumentRow(screenRow, screenColumn) -> Number - * - * - **/ + this.screenToDocumentRow = function(screenRow, screenColumn) { return this.screenToDocumentPosition(screenRow, screenColumn).row; }; - /** internal, hide - * EditSession.screenToDocumentColumn(screenRow, screenColumn) -> Number - * - * - **/ + this.screenToDocumentColumn = function(screenRow, screenColumn) { return this.screenToDocumentPosition(screenRow, screenColumn).column; }; - /** related to: EditSession.documentToScreenPosition - * EditSession.screenToDocumentPosition(screenRow, screenColumn) -> Object - * - screenRow (Number): The screen row to check - * - screenColumn (Number): The screen column to check - * + (Object): The object returned has two properties: `row` and `column`. + /** + * @param {Number} screenRow The screen row to check + * @param {Number} screenColumn The screen column to check + * @returns {Object} The object returned has two properties: `row` and `column`. * * Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations} - * + * @related EditSession.documentToScreenPosition * **/ this.screenToDocumentPosition = function(screenRow, screenColumn) { @@ -2317,14 +2211,13 @@ var EditSession = function(text, mode) { return {row: docRow, column: docColumn}; }; - /** related to: EditSession.screenToDocumentPosition - * EditSession.documentToScreenPosition(docRow, docColumn) -> Object - * - docRow (Number): The document row to check - * - docColumn (Number): The document column to check - * + (Object): The object returned by this method has two properties: `row` and `column`. + /** + * @param {Number} docRow The document row to check + * @param {Number} docColumn The document column to check + * @returns Object} The object returned by this method has two properties: `row` and `column`. * * Converts document coordinates to screen coordinates. {:conversionConsiderations} - * + * @related EditSession.screenToDocumentPosition * **/ this.documentToScreenPosition = function(docRow, docColumn) { @@ -2414,28 +2307,18 @@ var EditSession = function(text, mode) { }; }; - /** internal, hide - * EditSession.documentToScreenColumn(row, docColumn) -> Number - * - * - **/ + this.documentToScreenColumn = function(row, docColumn) { return this.documentToScreenPosition(row, docColumn).column; }; - /** internal, hide - * EditSession.documentToScreenRow(docRow, docColumn) -> Number - * - * - **/ this.documentToScreenRow = function(docRow, docColumn) { return this.documentToScreenPosition(docRow, docColumn).row; }; /** - * EditSession.getScreenLength() -> Number - * * Returns the length of the screen. + * @returns Number **/ this.getScreenLength = function() { var screenRows = 0; diff --git a/lib/ace/multi_select.js b/lib/ace/multi_select.js index 547463ad..377f018c 100644 --- a/lib/ace/multi_select.js +++ b/lib/ace/multi_select.js @@ -324,7 +324,7 @@ var EditSession = require("./edit_session").EditSession; var Editor = require("./editor").Editor; (function() { - /** extension + /** * Editor.updateSelectionMarkers() * * Updates the cursor and marker layers. @@ -334,7 +334,7 @@ var Editor = require("./editor").Editor; this.renderer.updateBackMarkers(); }; - /** extension + /** * Editor.addSelectionMarker(orientedRange) -> Range * - orientedRange (Range): A range containing a cursor * @@ -352,7 +352,7 @@ var Editor = require("./editor").Editor; return orientedRange; }; - /** extension + /** * Editor.removeSelectionMarker(range) * - range (Range): The selection range added with [[Editor.addSelectionMarker `addSelectionMarker()`]]. * @@ -440,7 +440,7 @@ var Editor = require("./editor").Editor; e.preventDefault(); }; - /** extension + /** * Editor.forEachSelection(cmd, args) * - cmd (String): The command to execute * - args (String): Any arguments for the command @@ -477,7 +477,7 @@ var Editor = require("./editor").Editor; this.onSelectionChange(); }; - /** extension + /** * Editor.exitMultiSelectMode() -> Void * * Removes all the selections except the last added one. @@ -528,7 +528,7 @@ var Editor = require("./editor").Editor; } }; - /** extension + /** * Editor.findAll(needle, options, additive) -> Number * - needle (String): The text to find * - options (Object): The search options @@ -559,14 +559,14 @@ var Editor = require("./editor").Editor; return ranges.length; }; - // commands - /** extension - * Editor.selectMoreLines(dir, skip) - * - dir (Number): The direction of lines to select: -1 for up, 1 for down - * - skip (Boolean): If `true`, removes the active selection range - * + /** * Adds a cursor above or below the active cursor. - **/ + * + * @param {Number} dir The direction of lines to select: -1 for up, 1 for down + * @param {Boolean} skip If `true`, removes the active selection range + * + * @method Editor.selectMoreLines + */ this.selectMoreLines = function(dir, skip) { var range = this.selection.toOrientedRange(); var isBackwards = range.cursor == range.end; @@ -646,7 +646,7 @@ var Editor = require("./editor").Editor; range.start.row = tmp.start.row; range.start.column = tmp.start.column; } - } + }; /** extension * Editor.selectMore(dir, skip) From eb955fa90da99ee8eeabdae3688b5df0ca83586a Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Fri, 2 Nov 2012 15:34:25 -0700 Subject: [PATCH 2/5] Save changes --- api/api.json | 14365 +++++++++++++++++++++++++++++- doc/build.js | 3 +- lib/ace/anchor.js | 34 +- lib/ace/background_tokenizer.js | 38 +- lib/ace/document.js | 87 +- lib/ace/edit_session.js | 378 +- lib/ace/editor.js | 661 +- lib/ace/placeholder.js | 10 +- lib/ace/range.js | 334 +- lib/ace/renderloop.js | 20 +- lib/ace/scrollbar.js | 51 +- lib/ace/search.js | 72 +- lib/ace/selection.js | 213 +- lib/ace/split.js | 109 +- lib/ace/token_iterator.js | 27 +- lib/ace/tokenizer.js | 17 +- lib/ace/undomanager.js | 41 +- lib/ace/virtual_renderer.js | 307 +- 18 files changed, 15484 insertions(+), 1283 deletions(-) diff --git a/api/api.json b/api/api.json index 06f05f32..78c034f0 100644 --- a/api/api.json +++ b/api/api.json @@ -1,6 +1,6 @@ { "title": "Ace API", - "date": "Mon, 22 Oct 2012 19:03:39 GMT", + "date": "Thu, 25 Oct 2012 20:19:19 GMT", "tree": { "children": [ { @@ -21,44 +21,14359 @@ "author": [], "signatures": [ { - "arguments": [ - { - "name": "el", - "description": "Either the id of an element, or the element itself", - "types": [ - "String", - "DOMElement" - ], - "optional": false - } - ] - } - ], - "arguments": [ - { - "name": "el", - "description": "Either the id of an element, or the element itself", - "types": [ - "String", - "DOMElement" - ], - "optional": false + "arguments": { + "arguments": [ + { + "name": "el", + "description": "Either the id of an element, or the element itself", + "types": [ + "String", + "DOMElement" + ], + "optional": false + } + ] + } } ], "aliases": [], "children": [], - "file": "../lib/ace/ace.js", + "file": "/Users/gjtorikian/Developer/ace/lib/ace/ace.js", "name": "edit", "name_prefix": "Ace.", "path": "Ace.edit", "outFile": "ace.html#Ace.edit" } ], - "file": "../lib/ace/ace.js", + "file": "/Users/gjtorikian/Developer/ace/lib/ace/ace.js", "subclasses": [], "name": "Ace", "path": "Ace", "outFile": "ace.html" + }, + { + "id": "Anchor", + "type": "class", + "description": "Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated.", + "short_description": "Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated.", + "line": 125, + "author": [], + "aliases": [], + "children": [ + { + "id": "Anchor.$clipPositionToDocument", + "type": "class method", + "description": "Clips the anchor position to the specified row and column.", + "short_description": "Clips the anchor position to the specified row and column.", + "line": 304, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row index to clip the anchor to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column index to clip the anchor to", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "$clipPositionToDocument", + "name_prefix": "Anchor.", + "path": "Anchor.$clipPositionToDocument", + "outFile": "anchor.html#Anchor.$clipPositionToDocument" + }, + { + "id": "Anchor.detach", + "type": "class method", + "description": "When called, the `'change'` event listener is removed.", + "short_description": "When called, the `'change'` event listener is removed.", + "line": 295, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "detach", + "name_prefix": "Anchor.", + "path": "Anchor.detach", + "outFile": "anchor.html#Anchor.detach" + }, + { + "id": "Anchor.getDocument", + "type": "class method", + "description": "Returns the current document.", + "short_description": "Returns the current document.", + "line": 167, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Document", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "getDocument", + "name_prefix": "Anchor.", + "path": "Anchor.getDocument", + "outFile": "anchor.html#Anchor.getDocument" + }, + { + "id": "Anchor.getPosition", + "type": "class method", + "description": "Returns an object identifying the `row` and `column` position of the current anchor.", + "short_description": "Returns an object identifying the `row` and `column` position of the current anchor.", + "line": 158, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "getPosition", + "name_prefix": "Anchor.", + "path": "Anchor.getPosition", + "outFile": "anchor.html#Anchor.getPosition" + }, + { + "id": "new Anchor", + "type": "constructor", + "description": "Creates a new `Anchor` and associates it with a document.", + "short_description": "Creates a new `Anchor` and associates it with a document.", + "line": 132, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "doc", + "description": "The document to associate with the anchor", + "types": [ + "Document" + ], + "optional": false + }, + { + "name": "row", + "description": "The starting row position", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The starting column position", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "new", + "name_prefix": "Anchor.", + "path": "Anchor.new", + "outFile": "anchor.html#Anchor.new" + }, + { + "id": "Anchor.setPosition", + "type": "class method", + "description": "Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped.", + "short_description": "Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped.", + "line": 257, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row index to move the anchor to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column index to move the anchor to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "noClip", + "description": "Identifies if you want the position to be clipped", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "setPosition", + "name_prefix": "Anchor.", + "path": "Anchor.setPosition", + "outFile": "anchor.html#Anchor.setPosition" + }, + { + "id": "Anchor@change", + "type": "event", + "description": "Fires whenever the anchor position changes.\n\nBoth of these objects have a `row` and `column` property corresponding to the position.\n\nEvents that can trigger this function include [[Anchor.setPosition `setPosition()`]].", + "short_description": "Fires whenever the anchor position changes.\n", + "line": 177, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "An object containing information about the anchor position. It has two properties: \n- `old`: An object describing the old Anchor position\n- `value`: An object describing the new Anchor position", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "name": "change", + "name_prefix": "Anchor@", + "path": "Anchor.event.change", + "outFile": "anchor.html#Anchor.event.change" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", + "subclasses": [], + "name": "Anchor", + "path": "Anchor", + "outFile": "anchor.html" + }, + { + "id": "BackgroundTokenizer", + "type": "class", + "description": "Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. \n\nIf a certain row is changed, everything below that row is re-tokenized.", + "short_description": "Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. \n", + "line": 343, + "author": [], + "aliases": [], + "children": [ + { + "id": "BackgroundTokenizer.fireUpdateEvent", + "type": "class method", + "description": "Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated.", + "short_description": "Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated.", + "line": 439, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The starting row region", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row region", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "fireUpdateEvent", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.fireUpdateEvent", + "outFile": "background_tokenizer.html#BackgroundTokenizer.fireUpdateEvent" + }, + { + "id": "BackgroundTokenizer.getState", + "type": "class method", + "description": "[Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState}", + "short_description": "[Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState}", + "line": 517, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to get state at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "getState", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.getState", + "outFile": "background_tokenizer.html#BackgroundTokenizer.getState" + }, + { + "id": "BackgroundTokenizer.getTokens", + "type": "class method", + "description": "Gives list of tokens of the row. (tokens are cached)", + "short_description": "Gives list of tokens of the row. (tokens are cached)", + "line": 505, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to get tokens at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "getTokens", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.getTokens", + "outFile": "background_tokenizer.html#BackgroundTokenizer.getTokens" + }, + { + "id": "new BackgroundTokenizer", + "type": "constructor", + "description": "Creates a new `BackgroundTokenizer` object.", + "short_description": "Creates a new `BackgroundTokenizer` object.", + "line": 353, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "tokenizer", + "description": "The tokenizer to use", + "types": [ + "Tokenizer" + ], + "optional": false + }, + { + "name": "editor", + "description": "The editor to associate with", + "types": [ + "Editor" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "new", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.new", + "outFile": "background_tokenizer.html#BackgroundTokenizer.new" + }, + { + "id": "BackgroundTokenizer.setDocument", + "type": "class method", + "description": "Sets a new document to associate with this object.", + "short_description": "Sets a new document to associate with this object.", + "line": 420, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "doc", + "description": "The new document to associate with", + "types": [ + "Document" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "setDocument", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.setDocument", + "outFile": "background_tokenizer.html#BackgroundTokenizer.setDocument" + }, + { + "id": "BackgroundTokenizer.setTokenizer", + "type": "class method", + "description": "Sets a new tokenizer for this object.", + "short_description": "Sets a new tokenizer for this object.", + "line": 406, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "tokenizer", + "description": "The new tokenizer to use", + "types": [ + "Tokenizer" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "setTokenizer", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.setTokenizer", + "outFile": "background_tokenizer.html#BackgroundTokenizer.setTokenizer" + }, + { + "id": "BackgroundTokenizer.start", + "type": "class method", + "description": "Starts tokenizing at the row indicated.", + "short_description": "Starts tokenizing at the row indicated.", + "line": 453, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "startRow", + "description": "The row to start at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "start", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.start", + "outFile": "background_tokenizer.html#BackgroundTokenizer.start" + }, + { + "id": "BackgroundTokenizer.stop", + "type": "class method", + "description": "Stops tokenizing.", + "short_description": "Stops tokenizing.", + "line": 495, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "stop", + "name_prefix": "BackgroundTokenizer.", + "path": "BackgroundTokenizer.stop", + "outFile": "background_tokenizer.html#BackgroundTokenizer.stop" + }, + { + "id": "BackgroundTokenizer@update", + "type": "event", + "description": "Fires whenever the background tokeniziers between a range of rows are going to be updated.", + "short_description": "Fires whenever the background tokeniziers between a range of rows are going to be updated.", + "line": 432, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "An object containing two properties, `first` and `last`, which indicate the rows of the region being updated.", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "name": "update", + "name_prefix": "BackgroundTokenizer@", + "path": "BackgroundTokenizer.event.update", + "outFile": "background_tokenizer.html#BackgroundTokenizer.event.update" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", + "subclasses": [], + "name": "BackgroundTokenizer", + "path": "BackgroundTokenizer", + "outFile": "background_tokenizer.html" + }, + { + "id": "CommandManager", + "type": "class", + "description": "new CommandManager(platform, commands)", + "short_description": "new CommandManager(platform, commands)", + "line": 523, + "author": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/commands/command_manager.js", + "subclasses": [], + "name": "CommandManager", + "path": "CommandManager", + "outFile": "command_manager.html" + }, + { + "id": "Document", + "type": "class", + "description": "Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. \n\nAt its core, `Document`s are just an array of strings, with each row in the document matching up to the array index.", + "short_description": "Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. \n", + "line": 945, + "author": [], + "aliases": [], + "children": [ + { + "id": "Document.$split", + "type": "class method", + "description": "Splits a string of text on any newline (`\\n`) or carriage-return ('\\r') characters.", + "short_description": "Splits a string of text on any newline (`\\n`) or carriage-return ('\\r') characters.", + "line": 1007, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The text to work with", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "description": "A String array, with each index containing a piece of the original `text` string." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "$split", + "name_prefix": "Document.", + "path": "Document.$split", + "outFile": "document.html#Document.$split" + }, + { + "id": "Document.applyDeltas", + "type": "class method", + "description": "Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", + "short_description": "Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", + "line": 1466, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltas", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "applyDeltas", + "name_prefix": "Document.", + "path": "Document.applyDeltas", + "outFile": "document.html#Document.applyDeltas" + }, + { + "id": "Document.createAnchor", + "type": "class method", + "description": "Creates a new `Anchor` to define a floating point in the document.", + "short_description": "Creates a new `Anchor` to define a floating point in the document.", + "line": 996, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number to use", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column number to use", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "createAnchor", + "name_prefix": "Document.", + "path": "Document.createAnchor", + "outFile": "document.html#Document.createAnchor" + }, + { + "id": "Document.getAllLines", + "type": "class method", + "description": "Returns all lines in the document as string array. Warning: The caller should not modify this array!", + "short_description": "Returns all lines in the document as string array. Warning: The caller should not modify this array!", + "line": 1118, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getAllLines", + "name_prefix": "Document.", + "path": "Document.getAllLines", + "outFile": "document.html#Document.getAllLines" + }, + { + "id": "Document.getLength", + "type": "class method", + "description": "Returns the number of rows in the document.", + "short_description": "Returns the number of rows in the document.", + "line": 1125, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getLength", + "name_prefix": "Document.", + "path": "Document.getLength", + "outFile": "document.html#Document.getLength" + }, + { + "id": "Document.getLine", + "type": "class method", + "description": "Returns a verbatim copy of the given line as it is in the document", + "short_description": "Returns a verbatim copy of the given line as it is in the document", + "line": 1095, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row index to retrieve", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getLine", + "name_prefix": "Document.", + "path": "Document.getLine", + "outFile": "document.html#Document.getLine" + }, + { + "id": "Document.getLines", + "type": "class method", + "description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", + "short_description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", + "line": 1106, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The first row index to retrieve", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row index to retrieve", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getLines", + "name_prefix": "Document.", + "path": "Document.getLines", + "outFile": "document.html#Document.getLines" + }, + { + "id": "Document.getNewLineCharacter", + "type": "class method", + "description": "Returns the newline character that's being used, depending on the value of `newLineMode`.", + "short_description": "Returns the newline character that's being used, depending on the value of `newLineMode`.", + "line": 1038, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "If `newLineMode == windows`, `\\r\\n` is returned. \nIf `newLineMode == unix`, `\\n` is returned. \nIf `newLineMode == auto`, the value of `autoNewLine` is returned." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getNewLineCharacter", + "name_prefix": "Document.", + "path": "Document.getNewLineCharacter", + "outFile": "document.html#Document.getNewLineCharacter" + }, + { + "id": "Document.getNewLineMode", + "type": "class method", + "description": "[Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode}", + "short_description": "[Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode}", + "line": 1076, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getNewLineMode", + "name_prefix": "Document.", + "path": "Document.getNewLineMode", + "outFile": "document.html#Document.getNewLineMode" + }, + { + "id": "Document.getTextRange", + "type": "class method", + "description": "[Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc}", + "short_description": "[Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc}", + "line": 1132, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "The range to work with", + "types": [ + "Range" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getTextRange", + "name_prefix": "Document.", + "path": "Document.getTextRange", + "outFile": "document.html#Document.getTextRange" + }, + { + "id": "Document.getValue", + "type": "class method", + "description": "Returns all the lines in the document as a single string, split by the new line character.", + "short_description": "Returns all the lines in the document as a single string, split by the new line character.", + "line": 989, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "getValue", + "name_prefix": "Document.", + "path": "Document.getValue", + "outFile": "document.html#Document.getValue" + }, + { + "id": "Document.insert", + "type": "class method", + "description": "Inserts a block of `text` and the indicated `position`.", + "short_description": "Inserts a block of `text` and the indicated `position`.", + "line": 1160, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to start inserting at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "text", + "description": "A chunk of text to insert", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "insert", + "name_prefix": "Document.", + "path": "Document.insert", + "outFile": "document.html#Document.insert" + }, + { + "id": "Document.insertInLine", + "type": "class method", + "description": "Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event.", + "short_description": "Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event.", + "line": 1288, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to insert at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "text", + "description": "A chunk of text", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Returns an object containing the final row and column, like this: \n ```\n {row: endRow, column: 0}\n```" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "insertInLine", + "name_prefix": "Document.", + "path": "Document.insertInLine", + "outFile": "document.html#Document.insertInLine" + }, + { + "id": "Document.insertLines", + "type": "class method", + "description": "Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event.", + "short_description": "Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event.", + "line": 1215, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The index of the row to insert at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lines", + "description": "An array of strings", + "types": [ + "Array" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Contains the final row and column, like this: \n ```\n {row: endRow, column: 0}\n``` \nIf `lines` is empty, this function returns an object containing the current row, and column, like this: \n ``` \n {row: row, column: 0}\n```" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "insertLines", + "name_prefix": "Document.", + "path": "Document.insertLines", + "outFile": "document.html#Document.insertLines" + }, + { + "id": "Document.insertNewLine", + "type": "class method", + "description": "Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event.", + "short_description": "Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event.", + "line": 1257, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to insert at", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n ```\n {row: endRow, column: 0}\n```" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "insertNewLine", + "name_prefix": "Document.", + "path": "Document.insertNewLine", + "outFile": "document.html#Document.insertNewLine" + }, + { + "id": "Document.isNewLine", + "type": "class method", + "description": "Returns `true` if `text` is a newline character (either `\\r\\n`, `\\r`, or `\\n`).", + "short_description": "Returns `true` if `text` is a newline character (either `\\r\\n`, `\\r`, or `\\n`).", + "line": 1084, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The text to check", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "isNewLine", + "name_prefix": "Document.", + "path": "Document.isNewLine", + "outFile": "document.html#Document.isNewLine" + }, + { + "id": "new Document", + "type": "constructor", + "description": "Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty.", + "short_description": "Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty.", + "line": 953, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The starting text", + "types": [ + "String", + "Array" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "new", + "name_prefix": "Document.", + "path": "Document.new", + "outFile": "document.html#Document.new" + }, + { + "id": "Document.remove", + "type": "class method", + "description": "Removes the `range` from the document.", + "short_description": "Removes the `range` from the document.", + "line": 1324, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A specified Range to remove", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Returns the new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "remove", + "name_prefix": "Document.", + "path": "Document.remove", + "outFile": "document.html#Document.remove" + }, + { + "id": "Document.removeInLine", + "type": "class method", + "description": "Removes the specified columns from the `row`. This method also triggers the `'change'` event.", + "short_description": "Removes the specified columns from the `row`. This method also triggers the `'change'` event.", + "line": 1363, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to remove from", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "startColumn", + "description": "The column to start removing at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "endColumn", + "description": "The column to stop removing at", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Returns an object containing `startRow` and `startColumn`, indicating the new row and column values.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              If `startColumn` is equal to `endColumn`, this function returns nothing." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "removeInLine", + "name_prefix": "Document.", + "path": "Document.removeInLine", + "outFile": "document.html#Document.removeInLine" + }, + { + "id": "Document.removeLines", + "type": "class method", + "description": "Removes a range of full lines. This method also triggers the `'change'` event.", + "short_description": "Removes a range of full lines. This method also triggers the `'change'` event.", + "line": 1391, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The first row to be removed", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The last row to be removed", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "isArray": true, + "description": "Returns all the removed lines." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "removeLines", + "name_prefix": "Document.", + "path": "Document.removeLines", + "outFile": "document.html#Document.removeLines" + }, + { + "id": "Document.removeNewLine", + "type": "class method", + "description": "Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event.", + "short_description": "Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event.", + "line": 1413, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to check", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "removeNewLine", + "name_prefix": "Document.", + "path": "Document.removeNewLine", + "outFile": "document.html#Document.removeNewLine" + }, + { + "id": "Document.replace", + "type": "class method", + "description": "Replaces a range in the document with the new `text`.", + "short_description": "Replaces a range in the document with the new `text`.", + "line": 1435, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A specified Range to replace", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "text", + "description": "The new text to use as a replacement", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "Returns an object containing the final row and column, like this:\n{row: endRow, column: 0}\nIf the text and range are empty, this function returns an object containing the current `range.start` value.\nIf the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "replace", + "name_prefix": "Document.", + "path": "Document.replace", + "outFile": "document.html#Document.replace" + }, + { + "id": "Document.revertDeltas", + "type": "class method", + "description": "Reverts any changes previously applied. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", + "short_description": "Reverts any changes previously applied. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", + "line": 1485, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltas", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "revertDeltas", + "name_prefix": "Document.", + "path": "Document.revertDeltas", + "outFile": "document.html#Document.revertDeltas" + }, + { + "id": "Document.setNewLineMode", + "type": "class method", + "description": "[Sets the new line mode.]{: #Document.setNewLineMode.desc}", + "short_description": "[Sets the new line mode.]{: #Document.setNewLineMode.desc}", + "line": 1063, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "newLineMode", + "description": "[The newline mode to use; can be either `windows`, `unix`, or `auto`]{: #Document.setNewLineMode.param}", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "setNewLineMode", + "name_prefix": "Document.", + "path": "Document.setNewLineMode", + "outFile": "document.html#Document.setNewLineMode" + }, + { + "id": "Document.setValue", + "type": "class method", + "description": "Replaces all the lines in the current `Document` with the value of `text`.", + "short_description": "Replaces all the lines in the current `Document` with the value of `text`.", + "line": 978, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The text to use", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "setValue", + "name_prefix": "Document.", + "path": "Document.setValue", + "outFile": "document.html#Document.setValue" + }, + { + "id": "Document@change", + "type": "event", + "description": "Fires whenever the document changes.\n\nSeveral methods trigger different `\"change\"` events. Below is a list of each action type, followed by each property that's also available:\n\n* `\"insertLines\"` (emitted by [[Document.insertLines]])\n* `range`: the [[Range]] of the change within the document\n* `lines`: the lines in the document that are changing\n* `\"insertText\"` (emitted by [[Document.insertNewLine]])\n* `range`: the [[Range]] of the change within the document\n* `text`: the text that's being added\n* `\"removeLines\"` (emitted by [[Document.insertLines]])\n* `range`: the [[Range]] of the change within the document\n* `lines`: the lines in the document that were removed\n* `nl`: the new line character (as defined by [[Document.getNewLineCharacter]])\n* `\"removeText\"` (emitted by [[Document.removeInLine]] and [[Document.removeNewLine]])\n* `range`: the [[Range]] of the change within the document\n* `text`: the text that's being removed", + "short_description": "Fires whenever the document changes.\n", + "line": 1192, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "Contains at least one property called `\"action\"`. `\"action\"` indicates the action that triggered the change. Each action also has a set of additional properties.", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "name": "change", + "name_prefix": "Document@", + "path": "Document.event.change", + "outFile": "document.html#Document.event.change" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", + "subclasses": [], + "name": "Document", + "path": "Document", + "outFile": "document.html" + }, + { + "id": "Editor", + "type": "class", + "description": "The main entry point into the Ace functionality. \n\nThe `Editor` manages the `[[EditSession]]` (which manages `[[Document]]`s), as well as the `[[VirtualRenderer]]`, which draws everything to the screen. \n\nEvent sessions dealing with the mouse and keyboard are bubbled up from `Document` to the `Editor`, which decides what to do with them.", + "short_description": "The main entry point into the Ace functionality. \n", + "line": 5118, + "author": [], + "aliases": [], + "children": [ + { + "id": "Editor.$getSelectedRows", + "type": "class method", + "description": "Returns an object indicating the currently selected rows. The object looks like this:\n```json\n{ first: range.start.row, last: range.end.row }\n```", + "short_description": "Returns an object indicating the currently selected rows. The object looks like this:\n```json\n{ first: range.start.row, last: range.end.row }\n```", + "line": 6490, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "$getSelectedRows", + "name_prefix": "Editor.", + "path": "Editor.$getSelectedRows", + "outFile": "editor.html#Editor.$getSelectedRows" + }, + { + "id": "Editor.$getVisibleRowCount", + "type": "class method", + "description": "Returns the number of currently visibile rows.", + "short_description": "Returns the number of currently visibile rows.", + "line": 6557, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "$getVisibleRowCount", + "name_prefix": "Editor.", + "path": "Editor.$getVisibleRowCount", + "outFile": "editor.html#Editor.$getVisibleRowCount" + }, + { + "id": "Editor.$moveLines", + "type": "class method", + "description": "Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.", + "short_description": "Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.", + "line": 6461, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "mover", + "description": "A method to call on each selected row", + "types": [ + "Function" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "$moveLines", + "name_prefix": "Editor.", + "path": "Editor.$moveLines", + "outFile": "editor.html#Editor.$moveLines" + }, + { + "id": "Editor.blockOutdent", + "type": "class method", + "description": "Outdents the current line.", + "short_description": "Outdents the current line.", + "line": 6316, + "author": [], + "related": "EditSession.outdentRows", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "blockOutdent", + "name_prefix": "Editor.", + "path": "Editor.blockOutdent", + "outFile": "editor.html#Editor.blockOutdent" + }, + { + "id": "Editor.blur", + "type": "class method", + "description": "Blurs the current `textInput`.", + "short_description": "Blurs the current `textInput`.", + "line": 5455, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "blur", + "name_prefix": "Editor.", + "path": "Editor.blur", + "outFile": "editor.html#Editor.blur" + }, + { + "id": "Editor.centerSelection", + "type": "class method", + "description": "Attempts to center the current selection on the screen.", + "short_description": "Attempts to center the current selection on the screen.", + "line": 6654, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "centerSelection", + "name_prefix": "Editor.", + "path": "Editor.centerSelection", + "outFile": "editor.html#Editor.centerSelection" + }, + { + "id": "Editor.clearSelection", + "type": "class method", + "description": "{:Selection.clearSelection}", + "short_description": "{:Selection.clearSelection}", + "line": 6708, + "author": [], + "related": "Selection.clearSelection", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "clearSelection", + "name_prefix": "Editor.", + "path": "Editor.clearSelection", + "outFile": "editor.html#Editor.clearSelection" + }, + { + "id": "Editor.copyLinesDown", + "type": "class method", + "description": "Copies all the selected lines down one row.", + "short_description": "Copies all the selected lines down one row.", + "line": 6448, + "author": [], + "related": "EditSession.duplicateLines", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "On success, returns the number of new rows added; in other words, `lastRow - firstRow + 1`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "copyLinesDown", + "name_prefix": "Editor.", + "path": "Editor.copyLinesDown", + "outFile": "editor.html#Editor.copyLinesDown" + }, + { + "id": "Editor.copyLinesUp", + "type": "class method", + "description": "Copies all the selected lines up one row.", + "short_description": "Copies all the selected lines up one row.", + "line": 6436, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "On success, returns 0." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "copyLinesUp", + "name_prefix": "Editor.", + "path": "Editor.copyLinesUp", + "outFile": "editor.html#Editor.copyLinesUp" + }, + { + "id": "Editor.destroy", + "type": "class method", + "description": "Cleans up the entire editor.", + "short_description": "Cleans up the entire editor.", + "line": 7116, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "destroy", + "name_prefix": "Editor.", + "path": "Editor.destroy", + "outFile": "editor.html#Editor.destroy" + }, + { + "id": "Editor.find", + "type": "class method", + "description": "Attempts to find `needle` within the document. For more information on `options`, see [[Search `Search`]].", + "short_description": "Attempts to find `needle` within the document. For more information on `options`, see [[Search `Search`]].", + "line": 7010, + "author": [], + "related": "Search.find", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "needle", + "description": "The text to search for (optional)", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "options", + "description": "An object defining various search properties", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animate scrolling", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "find", + "name_prefix": "Editor.", + "path": "Editor.find", + "outFile": "editor.html#Editor.find" + }, + { + "id": "Editor.findNext", + "type": "class method", + "description": "Performs another search for `needle` in the document. For more information on `options`, see [[Search `Search`]].", + "short_description": "Performs another search for `needle` in the document. For more information on `options`, see [[Search `Search`]].", + "line": 7058, + "author": [], + "related": "Editor.find", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "options", + "description": "search options", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animate scrolling", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "findNext", + "name_prefix": "Editor.", + "path": "Editor.findNext", + "outFile": "editor.html#Editor.findNext" + }, + { + "id": "Editor.findPrevious", + "type": "class method", + "description": "Performs a search for `needle` backwards. For more information on `options`, see [[Search `Search`]].", + "short_description": "Performs a search for `needle` backwards. For more information on `options`, see [[Search `Search`]].", + "line": 7070, + "author": [], + "related": "Editor.find", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "options", + "description": "search options", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animate scrolling", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "findPrevious", + "name_prefix": "Editor.", + "path": "Editor.findPrevious", + "outFile": "editor.html#Editor.findPrevious" + }, + { + "id": "Editor.focus", + "type": "class method", + "description": "Brings the current `textInput` into focus.", + "short_description": "Brings the current `textInput` into focus.", + "line": 5432, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "focus", + "name_prefix": "Editor.", + "path": "Editor.focus", + "outFile": "editor.html#Editor.focus" + }, + { + "id": "Editor.getBehavioursEnabled", + "type": "class method", + "description": "Returns `true` if the behaviors are currently enabled. {:BehaviorsDef}", + "short_description": "Returns `true` if the behaviors are currently enabled. {:BehaviorsDef}", + "line": 6099, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getBehavioursEnabled", + "name_prefix": "Editor.", + "path": "Editor.getBehavioursEnabled", + "outFile": "editor.html#Editor.getBehavioursEnabled" + }, + { + "id": "Editor.getCopyText", + "type": "class method", + "description": "Returns the string of text currently highlighted.", + "short_description": "Returns the string of text currently highlighted.", + "line": 5679, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getCopyText", + "name_prefix": "Editor.", + "path": "Editor.getCopyText", + "outFile": "editor.html#Editor.getCopyText" + }, + { + "id": "Editor.getCursorPosition", + "type": "class method", + "description": "Gets the current position of the cursor.", + "short_description": "Gets the current position of the cursor.", + "line": 6666, + "author": [], + "related": "Selection.getCursor", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "An object that looks something like this: \n```json\n{ row: currRow, column: currCol }\n```" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getCursorPosition", + "name_prefix": "Editor.", + "path": "Editor.getCursorPosition", + "outFile": "editor.html#Editor.getCursorPosition" + }, + { + "id": "Editor.getCursorPositionScreen", + "type": "class method", + "description": "Returns the screen position of the cursor.", + "short_description": "Returns the screen position of the cursor.", + "line": 6679, + "author": [], + "related": "EditSession.documentToScreenPosition", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getCursorPositionScreen", + "name_prefix": "Editor.", + "path": "Editor.getCursorPositionScreen", + "outFile": "editor.html#Editor.getCursorPositionScreen" + }, + { + "id": "Editor.getDragDelay", + "type": "class method", + "description": "Returns the current mouse drag delay.", + "short_description": "Returns the current mouse drag delay.", + "line": 5893, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getDragDelay", + "name_prefix": "Editor.", + "path": "Editor.getDragDelay", + "outFile": "editor.html#Editor.getDragDelay" + }, + { + "id": "Editor.getFirstVisibleRow", + "type": "class method", + "description": "{:VirtualRenderer.getFirstVisibleRow}", + "short_description": "{:VirtualRenderer.getFirstVisibleRow}", + "line": 6518, + "author": [], + "related": "VirtualRenderer.getFirstVisibleRow", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getFirstVisibleRow", + "name_prefix": "Editor.", + "path": "Editor.getFirstVisibleRow", + "outFile": "editor.html#Editor.getFirstVisibleRow" + }, + { + "id": "Editor.getHighlightActiveLine", + "type": "class method", + "description": "Returns `true` if current lines are always highlighted.", + "short_description": "Returns `true` if current lines are always highlighted.", + "line": 5953, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getHighlightActiveLine", + "name_prefix": "Editor.", + "path": "Editor.getHighlightActiveLine", + "outFile": "editor.html#Editor.getHighlightActiveLine" + }, + { + "id": "Editor.getHighlightSelectedWord", + "type": "class method", + "description": "Returns `true` if currently highlighted words are to be highlighted.", + "short_description": "Returns `true` if currently highlighted words are to be highlighted.", + "line": 5989, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getHighlightSelectedWord", + "name_prefix": "Editor.", + "path": "Editor.getHighlightSelectedWord", + "outFile": "editor.html#Editor.getHighlightSelectedWord" + }, + { + "id": "Editor.getKeyboardHandler", + "type": "class method", + "description": "Returns the keyboard handler, such as \"vim\" or \"windows\".", + "short_description": "Returns the keyboard handler, such as \"vim\" or \"windows\".", + "line": 5174, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getKeyboardHandler", + "name_prefix": "Editor.", + "path": "Editor.getKeyboardHandler", + "outFile": "editor.html#Editor.getKeyboardHandler" + }, + { + "id": "Editor.getLastSearchOptions", + "type": "class method", + "description": "{:Search.getOptions} For more information on `options`, see [[Search `Search`]].", + "short_description": "{:Search.getOptions} For more information on `options`, see [[Search `Search`]].", + "line": 7001, + "author": [], + "related": "Search.getOptions", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getLastSearchOptions", + "name_prefix": "Editor.", + "path": "Editor.getLastSearchOptions", + "outFile": "editor.html#Editor.getLastSearchOptions" + }, + { + "id": "Editor.getLastVisibleRow", + "type": "class method", + "description": "{:VirtualRenderer.getLastVisibleRow}", + "short_description": "{:VirtualRenderer.getLastVisibleRow}", + "line": 6527, + "author": [], + "related": "VirtualRenderer.getLastVisibleRow", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getLastVisibleRow", + "name_prefix": "Editor.", + "path": "Editor.getLastVisibleRow", + "outFile": "editor.html#Editor.getLastVisibleRow" + }, + { + "id": "Editor.getOverwrite", + "type": "class method", + "description": "Returns `true` if overwrites are enabled; `false` otherwise.", + "short_description": "Returns `true` if overwrites are enabled; `false` otherwise.", + "line": 5846, + "author": [], + "related": "EditSession.getOverwrite", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getOverwrite", + "name_prefix": "Editor.", + "path": "Editor.getOverwrite", + "outFile": "editor.html#Editor.getOverwrite" + }, + { + "id": "Editor.getPrintMarginColumn", + "type": "class method", + "description": "Returns the column number of where the print margin is.", + "short_description": "Returns the column number of where the print margin is.", + "line": 6060, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getPrintMarginColumn", + "name_prefix": "Editor.", + "path": "Editor.getPrintMarginColumn", + "outFile": "editor.html#Editor.getPrintMarginColumn" + }, + { + "id": "Editor.getReadOnly", + "type": "class method", + "description": "Returns `true` if the editor is set to read-only mode.", + "short_description": "Returns `true` if the editor is set to read-only mode.", + "line": 6079, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getReadOnly", + "name_prefix": "Editor.", + "path": "Editor.getReadOnly", + "outFile": "editor.html#Editor.getReadOnly" + }, + { + "id": "Editor.getScrollSpeed", + "type": "class method", + "description": "Returns the value indicating how fast the mouse scroll speed is.", + "short_description": "Returns the value indicating how fast the mouse scroll speed is.", + "line": 5874, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getScrollSpeed", + "name_prefix": "Editor.", + "path": "Editor.getScrollSpeed", + "outFile": "editor.html#Editor.getScrollSpeed" + }, + { + "id": "Editor.getSelection", + "type": "class method", + "description": "Returns the currently highlighted selection.", + "short_description": "Returns the currently highlighted selection.", + "line": 5338, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "The highlighted selection" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getSelection", + "name_prefix": "Editor.", + "path": "Editor.getSelection", + "outFile": "editor.html#Editor.getSelection" + }, + { + "id": "Editor.getSelectionRange", + "type": "class method", + "description": "{:Selection.getRange}", + "short_description": "{:Selection.getRange}", + "line": 6688, + "author": [], + "related": "Selection.getRange", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getSelectionRange", + "name_prefix": "Editor.", + "path": "Editor.getSelectionRange", + "outFile": "editor.html#Editor.getSelectionRange" + }, + { + "id": "Editor.getSelectionStyle", + "type": "class method", + "description": "Returns the current selection style.", + "short_description": "Returns the current selection style.", + "line": 5928, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getSelectionStyle", + "name_prefix": "Editor.", + "path": "Editor.getSelectionStyle", + "outFile": "editor.html#Editor.getSelectionStyle" + }, + { + "id": "Editor.getSession", + "type": "class method", + "description": "Returns the current session being used.", + "short_description": "Returns the current session being used.", + "line": 5297, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "EditSession", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getSession", + "name_prefix": "Editor.", + "path": "Editor.getSession", + "outFile": "editor.html#Editor.getSession" + }, + { + "id": "Editor.getShowFoldWidgets", + "type": "class method", + "description": "Returns `true` if the fold widgets are shown.", + "short_description": "Returns `true` if the fold widgets are shown.", + "line": 6124, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getShowFoldWidgets", + "name_prefix": "Editor.", + "path": "Editor.getShowFoldWidgets", + "outFile": "editor.html#Editor.getShowFoldWidgets" + }, + { + "id": "Editor.getShowInvisibles", + "type": "class method", + "description": "Returns `true` if invisible characters are being shown.", + "short_description": "Returns `true` if invisible characters are being shown.", + "line": 6015, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getShowInvisibles", + "name_prefix": "Editor.", + "path": "Editor.getShowInvisibles", + "outFile": "editor.html#Editor.getShowInvisibles" + }, + { + "id": "Editor.getShowPrintMargin", + "type": "class method", + "description": "Returns `true` if the print margin is being shown.", + "short_description": "Returns `true` if the print margin is being shown.", + "line": 6041, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getShowPrintMargin", + "name_prefix": "Editor.", + "path": "Editor.getShowPrintMargin", + "outFile": "editor.html#Editor.getShowPrintMargin" + }, + { + "id": "Editor.getTheme", + "type": "class method", + "description": "{:VirtualRenderer.getTheme}", + "short_description": "{:VirtualRenderer.getTheme}", + "line": 5368, + "author": [], + "related": "VirtualRenderer.getTheme", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "The set theme" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getTheme", + "name_prefix": "Editor.", + "path": "Editor.getTheme", + "outFile": "editor.html#Editor.getTheme" + }, + { + "id": "Editor.getValue", + "type": "class method", + "description": "Returns the current session's content.", + "short_description": "Returns the current session's content.", + "line": 5328, + "author": [], + "related": "EditSession.getValue", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "getValue", + "name_prefix": "Editor.", + "path": "Editor.getValue", + "outFile": "editor.html#Editor.getValue" + }, + { + "id": "Editor.gotoLine", + "type": "class method", + "description": "Moves the cursor to the specified line number, and also into the indiciated column.", + "short_description": "Moves the cursor to the specified line number, and also into the indiciated column.", + "line": 6774, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "lineNumber", + "description": "The line number to go to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column number to go to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animates scolling", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "gotoLine", + "name_prefix": "Editor.", + "path": "Editor.gotoLine", + "outFile": "editor.html#Editor.gotoLine" + }, + { + "id": "Editor.gotoPageDown", + "type": "class method", + "description": "Shifts the document to wherever \"page down\" is, as well as moving the cursor position.", + "short_description": "Shifts the document to wherever \"page down\" is, as well as moving the cursor position.", + "line": 6604, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "gotoPageDown", + "name_prefix": "Editor.", + "path": "Editor.gotoPageDown", + "outFile": "editor.html#Editor.gotoPageDown" + }, + { + "id": "Editor.gotoPageUp", + "type": "class method", + "description": "Shifts the document to wherever \"page up\" is, as well as moving the cursor position.", + "short_description": "Shifts the document to wherever \"page up\" is, as well as moving the cursor position.", + "line": 6611, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "gotoPageUp", + "name_prefix": "Editor.", + "path": "Editor.gotoPageUp", + "outFile": "editor.html#Editor.gotoPageUp" + }, + { + "id": "Editor.indent", + "type": "class method", + "description": "Indents the current line.", + "short_description": "Indents the current line.", + "line": 6288, + "author": [], + "related": "EditSession.indentRows", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "indent", + "name_prefix": "Editor.", + "path": "Editor.indent", + "outFile": "editor.html#Editor.indent" + }, + { + "id": "Editor.insert", + "type": "class method", + "description": "Inserts `text` into wherever the cursor is pointing.", + "short_description": "Inserts `text` into wherever the cursor is pointing.", + "line": 5729, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The new text to add", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "insert", + "name_prefix": "Editor.", + "path": "Editor.insert", + "outFile": "editor.html#Editor.insert" + }, + { + "id": "Editor.isFocused", + "type": "class method", + "description": "Returns `true` if the current `textInput` is in focus.", + "short_description": "Returns `true` if the current `textInput` is in focus.", + "line": 5447, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "isFocused", + "name_prefix": "Editor.", + "path": "Editor.isFocused", + "outFile": "editor.html#Editor.isFocused" + }, + { + "id": "Editor.isRowFullyVisible", + "type": "class method", + "description": "Indicates if the entire row is currently visible on the screen.", + "short_description": "Indicates if the entire row is currently visible on the screen.", + "line": 6546, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "isRowFullyVisible", + "name_prefix": "Editor.", + "path": "Editor.isRowFullyVisible", + "outFile": "editor.html#Editor.isRowFullyVisible" + }, + { + "id": "Editor.isRowVisible", + "type": "class method", + "description": "Indicates if the row is currently visible on the screen.", + "short_description": "Indicates if the row is currently visible on the screen.", + "line": 6536, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "isRowVisible", + "name_prefix": "Editor.", + "path": "Editor.isRowVisible", + "outFile": "editor.html#Editor.isRowVisible" + }, + { + "id": "Editor.jumpToMatching", + "type": "class method", + "description": "Moves the cursor's row and column to the next matching bracket.", + "short_description": "Moves the cursor's row and column to the next matching bracket.", + "line": 6739, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "select", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "jumpToMatching", + "name_prefix": "Editor.", + "path": "Editor.jumpToMatching", + "outFile": "editor.html#Editor.jumpToMatching" + }, + { + "id": "Editor.moveCursorTo", + "type": "class method", + "description": "Moves the cursor to the specified row and column. Note that this does not de-select the current selection.", + "short_description": "Moves the cursor to the specified row and column. Note that this does not de-select the current selection.", + "line": 6716, + "author": [], + "related": "Selection.moveCursorTo", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The new row number", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The new column number", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "moveCursorTo", + "name_prefix": "Editor.", + "path": "Editor.moveCursorTo", + "outFile": "editor.html#Editor.moveCursorTo" + }, + { + "id": "Editor.moveCursorToPosition", + "type": "class method", + "description": "Moves the cursor to the position indicated by `pos.row` and `pos.column`.", + "short_description": "Moves the cursor to the position indicated by `pos.row` and `pos.column`.", + "line": 6728, + "author": [], + "related": "Selection.moveCursorToPosition", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "pos", + "description": "An object with two properties, row and column", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "moveCursorToPosition", + "name_prefix": "Editor.", + "path": "Editor.moveCursorToPosition", + "outFile": "editor.html#Editor.moveCursorToPosition" + }, + { + "id": "Editor.moveLinesDown", + "type": "class method", + "description": "Shifts all the selected lines down one row.", + "short_description": "Shifts all the selected lines down one row.", + "line": 6395, + "author": [], + "related": "EditSession.moveLinesUp", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "On success, it returns -1." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "moveLinesDown", + "name_prefix": "Editor.", + "path": "Editor.moveLinesDown", + "outFile": "editor.html#Editor.moveLinesDown" + }, + { + "id": "Editor.moveLinesUp", + "type": "class method", + "description": "Shifts all the selected lines up one row.", + "short_description": "Shifts all the selected lines up one row.", + "line": 6407, + "author": [], + "related": "EditSession.moveLinesDown", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "On success, it returns -1." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "moveLinesUp", + "name_prefix": "Editor.", + "path": "Editor.moveLinesUp", + "outFile": "editor.html#Editor.moveLinesUp" + }, + { + "id": "Editor.moveText", + "type": "class method", + "description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n```json\n { row: newRowLocation, column: newColumnLocation }\n```", + "short_description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n```json\n { row: newRowLocation, column: newColumnLocation }\n```", + "line": 6418, + "author": [], + "related": "EditSession.moveText", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "fromRange", + "description": "The range of text you want moved within the document", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "toPosition", + "description": "The location (row and column) where you want to move the text to", + "types": [ + "Object" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "The new range where the text was moved to." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "moveText", + "name_prefix": "Editor.", + "path": "Editor.moveText", + "outFile": "editor.html#Editor.moveText" + }, + { + "id": "Editor.navigateDown", + "type": "class method", + "description": "Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.", + "short_description": "Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.", + "line": 6818, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "times", + "description": "The number of times to change navigation", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateDown", + "name_prefix": "Editor.", + "path": "Editor.navigateDown", + "outFile": "editor.html#Editor.navigateDown" + }, + { + "id": "Editor.navigateFileEnd", + "type": "class method", + "description": "Moves the cursor to the end of the current file. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the end of the current file. Note that this does de-select the current selection.", + "line": 6888, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateFileEnd", + "name_prefix": "Editor.", + "path": "Editor.navigateFileEnd", + "outFile": "editor.html#Editor.navigateFileEnd" + }, + { + "id": "Editor.navigateFileStart", + "type": "class method", + "description": "Moves the cursor to the start of the current file. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the start of the current file. Note that this does de-select the current selection.", + "line": 6899, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateFileStart", + "name_prefix": "Editor.", + "path": "Editor.navigateFileStart", + "outFile": "editor.html#Editor.navigateFileStart" + }, + { + "id": "Editor.navigateLeft", + "type": "class method", + "description": "Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.", + "short_description": "Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.", + "line": 6830, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "times", + "description": "The number of times to change navigation", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateLeft", + "name_prefix": "Editor.", + "path": "Editor.navigateLeft", + "outFile": "editor.html#Editor.navigateLeft" + }, + { + "id": "Editor.navigateLineEnd", + "type": "class method", + "description": "Moves the cursor to the end of the current line. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the end of the current line. Note that this does de-select the current selection.", + "line": 6879, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateLineEnd", + "name_prefix": "Editor.", + "path": "Editor.navigateLineEnd", + "outFile": "editor.html#Editor.navigateLineEnd" + }, + { + "id": "Editor.navigateLineStart", + "type": "class method", + "description": "Moves the cursor to the start of the current line. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the start of the current line. Note that this does de-select the current selection.", + "line": 6870, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateLineStart", + "name_prefix": "Editor.", + "path": "Editor.navigateLineStart", + "outFile": "editor.html#Editor.navigateLineStart" + }, + { + "id": "Editor.navigateRight", + "type": "class method", + "description": "Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.", + "short_description": "Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.", + "line": 6850, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "times", + "description": "The number of times to change navigation", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateRight", + "name_prefix": "Editor.", + "path": "Editor.navigateRight", + "outFile": "editor.html#Editor.navigateRight" + }, + { + "id": "Editor.navigateTo", + "type": "class method", + "description": "Moves the cursor to the specified row and column. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the specified row and column. Note that this does de-select the current selection.", + "line": 6793, + "author": [], + "related": "Editor.moveCursorTo", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The new row number", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The new column number", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateTo", + "name_prefix": "Editor.", + "path": "Editor.navigateTo", + "outFile": "editor.html#Editor.navigateTo" + }, + { + "id": "Editor.navigateUp", + "type": "class method", + "description": "Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.", + "short_description": "Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.", + "line": 6806, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "times", + "description": "The number of times to change navigation", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateUp", + "name_prefix": "Editor.", + "path": "Editor.navigateUp", + "outFile": "editor.html#Editor.navigateUp" + }, + { + "id": "Editor.navigateWordLeft", + "type": "class method", + "description": "Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.", + "line": 6919, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateWordLeft", + "name_prefix": "Editor.", + "path": "Editor.navigateWordLeft", + "outFile": "editor.html#Editor.navigateWordLeft" + }, + { + "id": "Editor.navigateWordRight", + "type": "class method", + "description": "Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.", + "short_description": "Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.", + "line": 6910, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "navigateWordRight", + "name_prefix": "Editor.", + "path": "Editor.navigateWordRight", + "outFile": "editor.html#Editor.navigateWordRight" + }, + { + "id": "new Editor", + "type": "constructor", + "description": "Creates a new `Editor` object.", + "short_description": "Creates a new `Editor` object.", + "line": 5129, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "renderer", + "description": "Associated `VirtualRenderer` that draws everything", + "types": [ + "VirtualRenderer" + ], + "optional": false + }, + { + "name": "session", + "description": "The `EditSession` to refer to", + "types": [ + "EditSession" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "new", + "name_prefix": "Editor.", + "path": "Editor.new", + "outFile": "editor.html#Editor.new" + }, + { + "id": "Editor.onCopy", + "type": "class method", + "description": "Called whenever a text \"copy\" happens.", + "short_description": "Called whenever a text \"copy\" happens.", + "line": 5694, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "onCopy", + "name_prefix": "Editor.", + "path": "Editor.onCopy", + "outFile": "editor.html#Editor.onCopy" + }, + { + "id": "Editor.onCursorChange", + "type": "class method", + "description": "Emitted when the selection changes.", + "short_description": "Emitted when the selection changes.", + "line": 5536, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "onCursorChange", + "name_prefix": "Editor.", + "path": "Editor.onCursorChange", + "outFile": "editor.html#Editor.onCursorChange" + }, + { + "id": "Editor.onCut", + "type": "class method", + "description": "Called whenever a text \"cut\" happens.", + "short_description": "Called whenever a text \"cut\" happens.", + "line": 5701, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "onCut", + "name_prefix": "Editor.", + "path": "Editor.onCut", + "outFile": "editor.html#Editor.onCut" + }, + { + "id": "Editor.onPaste", + "type": "class method", + "description": "Called whenever a text \"paste\" happens.", + "short_description": "Called whenever a text \"paste\" happens.", + "line": 5715, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The pasted text", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "onPaste", + "name_prefix": "Editor.", + "path": "Editor.onPaste", + "outFile": "editor.html#Editor.onPaste" + }, + { + "id": "Editor.redo", + "type": "class method", + "description": "{:UndoManager.redo}", + "short_description": "{:UndoManager.redo}", + "line": 7105, + "author": [], + "related": "UndoManager.redo", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "redo", + "name_prefix": "Editor.", + "path": "Editor.redo", + "outFile": "editor.html#Editor.redo" + }, + { + "id": "Editor.remove", + "type": "class method", + "description": "Removes words of text from the editor. A \"word\" is defined as a string of characters bookended by whitespace.", + "short_description": "Removes words of text from the editor. A \"word\" is defined as a string of characters bookended by whitespace.", + "line": 6140, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dir", + "description": "The direction of the deletion to occur, either \"left\" or \"right\"", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "remove", + "name_prefix": "Editor.", + "path": "Editor.remove", + "outFile": "editor.html#Editor.remove" + }, + { + "id": "Editor.removeLines", + "type": "class method", + "description": "Removes all the lines in the current selection", + "short_description": "Removes all the lines in the current selection", + "line": 6359, + "author": [], + "related": "EditSession.remove", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "removeLines", + "name_prefix": "Editor.", + "path": "Editor.removeLines", + "outFile": "editor.html#Editor.removeLines" + }, + { + "id": "Editor.removeToLineEnd", + "type": "class method", + "description": "Removes all the words to the right of the current selection, until the end of the line.", + "short_description": "Removes all the words to the right of the current selection, until the end of the line.", + "line": 6201, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "removeToLineEnd", + "name_prefix": "Editor.", + "path": "Editor.removeToLineEnd", + "outFile": "editor.html#Editor.removeToLineEnd" + }, + { + "id": "Editor.removeToLineStart", + "type": "class method", + "description": "Removes all the words to the left of the current selection, until the start of the line.", + "short_description": "Removes all the words to the left of the current selection, until the start of the line.", + "line": 6190, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "removeToLineStart", + "name_prefix": "Editor.", + "path": "Editor.removeToLineStart", + "outFile": "editor.html#Editor.removeToLineStart" + }, + { + "id": "Editor.removeWordLeft", + "type": "class method", + "description": "Removes the word directly to the left of the current selection.", + "short_description": "Removes the word directly to the left of the current selection.", + "line": 6179, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "removeWordLeft", + "name_prefix": "Editor.", + "path": "Editor.removeWordLeft", + "outFile": "editor.html#Editor.removeWordLeft" + }, + { + "id": "Editor.removeWordRight", + "type": "class method", + "description": "Removes the word directly to the right of the current selection.", + "short_description": "Removes the word directly to the right of the current selection.", + "line": 6168, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "removeWordRight", + "name_prefix": "Editor.", + "path": "Editor.removeWordRight", + "outFile": "editor.html#Editor.removeWordRight" + }, + { + "id": "Editor.replace", + "type": "class method", + "description": "Replaces the first occurance of `options.needle` with the value in `replacement`.", + "short_description": "Replaces the first occurance of `options.needle` with the value in `replacement`.", + "line": 6928, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "replacement", + "description": "The text to replace with", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "options", + "description": "The [[Search `Search`]] options to use", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "replace", + "name_prefix": "Editor.", + "path": "Editor.replace", + "outFile": "editor.html#Editor.replace" + }, + { + "id": "Editor.replaceAll", + "type": "class method", + "description": "Replaces all occurances of `options.needle` with the value in `replacement`.", + "short_description": "Replaces all occurances of `options.needle` with the value in `replacement`.", + "line": 6955, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "replacement", + "description": "The text to replace with", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "options", + "description": "The [[Search `Search`]] options to use", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "replaceAll", + "name_prefix": "Editor.", + "path": "Editor.replaceAll", + "outFile": "editor.html#Editor.replaceAll" + }, + { + "id": "Editor.resize", + "type": "class method", + "description": "{:VirtualRenderer.onResize}", + "short_description": "{:VirtualRenderer.onResize}", + "line": 5347, + "author": [], + "related": "VirtualRenderer.onResize", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "force", + "description": "If `true`, recomputes the size, even if the height and width haven't changed", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "resize", + "name_prefix": "Editor.", + "path": "Editor.resize", + "outFile": "editor.html#Editor.resize" + }, + { + "id": "Editor.scrollPageDown", + "type": "class method", + "description": "Scrolls the document to wherever \"page down\" is, without changing the cursor position.", + "short_description": "Scrolls the document to wherever \"page down\" is, without changing the cursor position.", + "line": 6618, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "scrollPageDown", + "name_prefix": "Editor.", + "path": "Editor.scrollPageDown", + "outFile": "editor.html#Editor.scrollPageDown" + }, + { + "id": "Editor.scrollPageUp", + "type": "class method", + "description": "Scrolls the document to wherever \"page up\" is, without changing the cursor position.", + "short_description": "Scrolls the document to wherever \"page up\" is, without changing the cursor position.", + "line": 6625, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "scrollPageUp", + "name_prefix": "Editor.", + "path": "Editor.scrollPageUp", + "outFile": "editor.html#Editor.scrollPageUp" + }, + { + "id": "Editor.scrollToLine", + "type": "class method", + "description": "Scrolls to a line. If `center` is `true`, it puts the line in middle of screen (or attempts to).", + "short_description": "Scrolls to a line. If `center` is `true`, it puts the line in middle of screen (or attempts to).", + "line": 6640, + "author": [], + "related": "VirtualRenderer.scrollToLine", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "line", + "description": "The line to scroll to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "center", + "description": "If `true`", + "types": [ + "Boolean" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animates scrolling", + "types": [ + "Boolean" + ], + "optional": false + }, + { + "name": "callback", + "description": "Function to be called when the animation has finished", + "types": [ + "Function" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "scrollToLine", + "name_prefix": "Editor.", + "path": "Editor.scrollToLine", + "outFile": "editor.html#Editor.scrollToLine" + }, + { + "id": "Editor.scrollToRow", + "type": "class method", + "description": "Moves the editor to the specified row.", + "short_description": "Moves the editor to the specified row.", + "line": 6632, + "author": [], + "related": "VirtualRenderer.scrollToRow", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "scrollToRow", + "name_prefix": "Editor.", + "path": "Editor.scrollToRow", + "outFile": "editor.html#Editor.scrollToRow" + }, + { + "id": "Editor.selectAll", + "type": "class method", + "description": "Selects all the text in editor.", + "short_description": "Selects all the text in editor.", + "line": 6698, + "author": [], + "related": "Selection.selectAll", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "selectAll", + "name_prefix": "Editor.", + "path": "Editor.selectAll", + "outFile": "editor.html#Editor.selectAll" + }, + { + "id": "Editor.selectPageDown", + "type": "class method", + "description": "Selects the text from the current position of the document until where a \"page down\" finishes.", + "short_description": "Selects the text from the current position of the document until where a \"page down\" finishes.", + "line": 6590, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "selectPageDown", + "name_prefix": "Editor.", + "path": "Editor.selectPageDown", + "outFile": "editor.html#Editor.selectPageDown" + }, + { + "id": "Editor.selectPageUp", + "type": "class method", + "description": "Selects the text from the current position of the document until where a \"page up\" finishes.", + "short_description": "Selects the text from the current position of the document until where a \"page up\" finishes.", + "line": 6597, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "selectPageUp", + "name_prefix": "Editor.", + "path": "Editor.selectPageUp", + "outFile": "editor.html#Editor.selectPageUp" + }, + { + "id": "Editor.setBehavioursEnabled", + "type": "class method", + "description": "Specifies whether to use behaviors or not. [\"Behaviors\" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef}", + "short_description": "Specifies whether to use behaviors or not. [\"Behaviors\" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef}", + "line": 6089, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "enabled", + "description": "Enables or disables behaviors", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setBehavioursEnabled", + "name_prefix": "Editor.", + "path": "Editor.setBehavioursEnabled", + "outFile": "editor.html#Editor.setBehavioursEnabled" + }, + { + "id": "Editor.setDragDelay", + "type": "class method", + "description": "Sets the delay (in milliseconds) of the mouse drag.", + "short_description": "Sets the delay (in milliseconds) of the mouse drag.", + "line": 5882, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dragDelay", + "description": "A value indicating the new delay", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setDragDelay", + "name_prefix": "Editor.", + "path": "Editor.setDragDelay", + "outFile": "editor.html#Editor.setDragDelay" + }, + { + "id": "Editor.setFontSize", + "type": "class method", + "description": "Set a new font size (in pixels) for the editor text.", + "short_description": "Set a new font size (in pixels) for the editor text.", + "line": 5397, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "size", + "description": "A font size", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setFontSize", + "name_prefix": "Editor.", + "path": "Editor.setFontSize", + "outFile": "editor.html#Editor.setFontSize" + }, + { + "id": "Editor.setHighlightActiveLine", + "type": "class method", + "description": "Determines whether or not the current line should be highlighted.", + "short_description": "Determines whether or not the current line should be highlighted.", + "line": 5938, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "shouldHighlight", + "description": "Set to `true` to highlight the current line", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setHighlightActiveLine", + "name_prefix": "Editor.", + "path": "Editor.setHighlightActiveLine", + "outFile": "editor.html#Editor.setHighlightActiveLine" + }, + { + "id": "Editor.setHighlightSelectedWord", + "type": "class method", + "description": "Determines if the currently selected word should be highlighted.", + "short_description": "Determines if the currently selected word should be highlighted.", + "line": 5975, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "shouldHighlight", + "description": "Set to `true` to highlight the currently selected word", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setHighlightSelectedWord", + "name_prefix": "Editor.", + "path": "Editor.setHighlightSelectedWord", + "outFile": "editor.html#Editor.setHighlightSelectedWord" + }, + { + "id": "Editor.setKeyboardHandler", + "type": "class method", + "description": "Sets a new key handler, such as \"vim\" or \"windows\".", + "short_description": "Sets a new key handler, such as \"vim\" or \"windows\".", + "line": 5164, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "keyboardHandler", + "description": "The new key handler", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setKeyboardHandler", + "name_prefix": "Editor.", + "path": "Editor.setKeyboardHandler", + "outFile": "editor.html#Editor.setKeyboardHandler" + }, + { + "id": "Editor.setOverwrite", + "type": "class method", + "description": "Pass in `true` to enable overwrites in your session, or `false` to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", + "short_description": "Pass in `true` to enable overwrites in your session, or `false` to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", + "line": 5835, + "author": [], + "related": "EditSession.setOverwrite", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "overwrite", + "description": "Defines wheter or not to set overwrites", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setOverwrite", + "name_prefix": "Editor.", + "path": "Editor.setOverwrite", + "outFile": "editor.html#Editor.setOverwrite" + }, + { + "id": "Editor.setPrintMarginColumn", + "type": "class method", + "description": "Sets the column defining where the print margin should be.", + "short_description": "Sets the column defining where the print margin should be.", + "line": 6049, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showPrintMargin", + "description": "Specifies the new print margin", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setPrintMarginColumn", + "name_prefix": "Editor.", + "path": "Editor.setPrintMarginColumn", + "outFile": "editor.html#Editor.setPrintMarginColumn" + }, + { + "id": "Editor.setReadOnly", + "type": "class method", + "description": "If `readOnly` is true, then the editor is set to read-only mode, and none of the content can change.", + "short_description": "If `readOnly` is true, then the editor is set to read-only mode, and none of the content can change.", + "line": 6069, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "readOnly", + "description": "Specifies whether the editor can be modified or not", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setReadOnly", + "name_prefix": "Editor.", + "path": "Editor.setReadOnly", + "outFile": "editor.html#Editor.setReadOnly" + }, + { + "id": "Editor.setScrollSpeed", + "type": "class method", + "description": "Sets how fast the mouse scrolling should do.", + "short_description": "Sets how fast the mouse scrolling should do.", + "line": 5863, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "speed", + "description": "A value indicating the new speed", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setScrollSpeed", + "name_prefix": "Editor.", + "path": "Editor.setScrollSpeed", + "outFile": "editor.html#Editor.setScrollSpeed" + }, + { + "id": "Editor.setSelectionStyle", + "type": "class method", + "description": "Indicates how selections should occur. \n\nBy default, selections are set to \"line\". This function also emits the `'changeSelectionStyle'` event.", + "short_description": "Indicates how selections should occur. \n", + "line": 5911, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "style", + "description": "The new selection style", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setSelectionStyle", + "name_prefix": "Editor.", + "path": "Editor.setSelectionStyle", + "outFile": "editor.html#Editor.setSelectionStyle" + }, + { + "id": "Editor.setSession", + "type": "class method", + "description": "Sets a new editsession to use. This method also emits the `'changeSession'` event.", + "short_description": "Sets a new editsession to use. This method also emits the `'changeSession'` event.", + "line": 5192, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The new session to use", + "types": [ + "EditSession" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setSession", + "name_prefix": "Editor.", + "path": "Editor.setSession", + "outFile": "editor.html#Editor.setSession" + }, + { + "id": "Editor.setShowFoldWidgets", + "type": "class method", + "description": "Indicates whether the fold widgets are shown or not.", + "short_description": "Indicates whether the fold widgets are shown or not.", + "line": 6108, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "show", + "description": "Specifies whether the fold widgets are shown", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setShowFoldWidgets", + "name_prefix": "Editor.", + "path": "Editor.setShowFoldWidgets", + "outFile": "editor.html#Editor.setShowFoldWidgets" + }, + { + "id": "Editor.setShowInvisibles", + "type": "class method", + "description": "If `showInvisibiles` is set to `true`, invisible characters—like spaces or new lines—are show in the editor.", + "short_description": "If `showInvisibiles` is set to `true`, invisible characters—like spaces or new lines—are show in the editor.", + "line": 6005, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showInvisibles", + "description": "Specifies whether or not to show invisible characters", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setShowInvisibles", + "name_prefix": "Editor.", + "path": "Editor.setShowInvisibles", + "outFile": "editor.html#Editor.setShowInvisibles" + }, + { + "id": "Editor.setShowPrintMargin", + "type": "class method", + "description": "If `showPrintMargin` is set to `true`, the print margin is shown in the editor.", + "short_description": "If `showPrintMargin` is set to `true`, the print margin is shown in the editor.", + "line": 6031, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showPrintMargin", + "description": "Specifies whether or not to show the print margin", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setShowPrintMargin", + "name_prefix": "Editor.", + "path": "Editor.setShowPrintMargin", + "outFile": "editor.html#Editor.setShowPrintMargin" + }, + { + "id": "Editor.setStyle", + "type": "class method", + "description": "{:VirtualRenderer.setStyle}", + "short_description": "{:VirtualRenderer.setStyle}", + "line": 5378, + "author": [], + "related": "VirtualRenderer.setStyle", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "style", + "description": "A class name", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setStyle", + "name_prefix": "Editor.", + "path": "Editor.setStyle", + "outFile": "editor.html#Editor.setStyle" + }, + { + "id": "Editor.setTheme", + "type": "class method", + "description": "{:VirtualRenderer.setTheme}", + "short_description": "{:VirtualRenderer.setTheme}", + "line": 5358, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "theme", + "description": "The path to a theme", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setTheme", + "name_prefix": "Editor.", + "path": "Editor.setTheme", + "outFile": "editor.html#Editor.setTheme" + }, + { + "id": "Editor.setValue", + "type": "class method", + "description": "Sets the current document to `val`.", + "short_description": "Sets the current document to `val`.", + "line": 5305, + "author": [], + "related": "Document.setValue", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "val", + "description": "The new value to set for the document", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "cursorPos", + "description": "Where to set the new value. `undefined` or 0 is selectAll, -1 is at the document start, and 1 is at the end", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "description": "The current document value" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "setValue", + "name_prefix": "Editor.", + "path": "Editor.setValue", + "outFile": "editor.html#Editor.setValue" + }, + { + "id": "Editor.splitLine", + "type": "class method", + "description": "Splits the line at the current selection (by inserting an `'\\n'`).", + "short_description": "Splits the line at the current selection (by inserting an `'\\n'`).", + "line": 6218, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "splitLine", + "name_prefix": "Editor.", + "path": "Editor.splitLine", + "outFile": "editor.html#Editor.splitLine" + }, + { + "id": "Editor.toggleCommentLines", + "type": "class method", + "description": "Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).", + "short_description": "Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).", + "line": 6350, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "toggleCommentLines", + "name_prefix": "Editor.", + "path": "Editor.toggleCommentLines", + "outFile": "editor.html#Editor.toggleCommentLines" + }, + { + "id": "Editor.toggleOverwrite", + "type": "class method", + "description": "Sets the value of overwrite to the opposite of whatever it currently is.", + "short_description": "Sets the value of overwrite to the opposite of whatever it currently is.", + "line": 5855, + "author": [], + "related": "EditSession.toggleOverwrite", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "toggleOverwrite", + "name_prefix": "Editor.", + "path": "Editor.toggleOverwrite", + "outFile": "editor.html#Editor.toggleOverwrite" + }, + { + "id": "Editor.toLowerCase", + "type": "class method", + "description": "Converts the current selection entirely into lowercase.", + "short_description": "Converts the current selection entirely into lowercase.", + "line": 6258, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "toLowerCase", + "name_prefix": "Editor.", + "path": "Editor.toLowerCase", + "outFile": "editor.html#Editor.toLowerCase" + }, + { + "id": "Editor.toUpperCase", + "type": "class method", + "description": "Converts the current selection entirely into uppercase.", + "short_description": "Converts the current selection entirely into uppercase.", + "line": 6273, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "toUpperCase", + "name_prefix": "Editor.", + "path": "Editor.toUpperCase", + "outFile": "editor.html#Editor.toUpperCase" + }, + { + "id": "Editor.transposeLetters", + "type": "class method", + "description": "Transposes current line.", + "short_description": "Transposes current line.", + "line": 6232, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "transposeLetters", + "name_prefix": "Editor.", + "path": "Editor.transposeLetters", + "outFile": "editor.html#Editor.transposeLetters" + }, + { + "id": "Editor.undo", + "type": "class method", + "description": "{:UndoManager.undo}", + "short_description": "{:UndoManager.undo}", + "line": 7094, + "author": [], + "related": "UndoManager.undo", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "undo", + "name_prefix": "Editor.", + "path": "Editor.undo", + "outFile": "editor.html#Editor.undo" + }, + { + "id": "Editor.unsetStyle", + "type": "class method", + "description": "{:VirtualRenderer.unsetStyle}", + "short_description": "{:VirtualRenderer.unsetStyle}", + "line": 5389, + "author": [], + "related": "VirtualRenderer.unsetStyle", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "style", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "unsetStyle", + "name_prefix": "Editor.", + "path": "Editor.unsetStyle", + "outFile": "editor.html#Editor.unsetStyle" + }, + { + "id": "Editor@blur", + "type": "event", + "description": "Emitted once the editor has been blurred.", + "short_description": "Emitted once the editor has been blurred.", + "line": 5478, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "blur", + "name_prefix": "Editor@", + "path": "Editor.event.blur", + "outFile": "editor.html#Editor.event.blur" + }, + { + "id": "Editor@change", + "type": "event", + "description": "Emitted whenever the document is changed.", + "short_description": "Emitted whenever the document is changed.", + "line": 5497, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "Contains a single property, `data`, which has the delta of changes", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "change", + "name_prefix": "Editor@", + "path": "Editor.event.change", + "outFile": "editor.html#Editor.event.change" + }, + { + "id": "Editor@changeSelectionStyle", + "type": "event", + "description": "Emitted when the selection style changes, via [[Editor.setSelectionStyle]].", + "short_description": "Emitted when the selection style changes, via [[Editor.setSelectionStyle]].", + "line": 5903, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "data", + "description": "Contains one property, `data`, which indicates the new selection style", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "changeSelectionStyle", + "name_prefix": "Editor@", + "path": "Editor.event.changeSelectionStyle", + "outFile": "editor.html#Editor.event.changeSelectionStyle" + }, + { + "id": "Editor@changeSession", + "type": "event", + "description": "Emitted whenever the [[EditSession]] changes.", + "short_description": "Emitted whenever the [[EditSession]] changes.", + "line": 5185, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "An object with two properties, `oldSession` and `session`, that represent the old and new [[EditSession]]s.", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "changeSession", + "name_prefix": "Editor@", + "path": "Editor.event.changeSession", + "outFile": "editor.html#Editor.event.changeSession" + }, + { + "id": "Editor@copy", + "type": "event", + "description": "Emitted when text is copied.", + "short_description": "Emitted when text is copied.", + "line": 5672, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The copied text", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "copy", + "name_prefix": "Editor@", + "path": "Editor.event.copy", + "outFile": "editor.html#Editor.event.copy" + }, + { + "id": "Editor@focus", + "type": "event", + "description": "Emitted once the editor comes into focus.", + "short_description": "Emitted once the editor comes into focus.", + "line": 5463, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "focus", + "name_prefix": "Editor@", + "path": "Editor.event.focus", + "outFile": "editor.html#Editor.event.focus" + }, + { + "id": "Editor@paste", + "type": "event", + "description": "Emitted when text is pasted.", + "short_description": "Emitted when text is pasted.", + "line": 5708, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The pasted text", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "name": "paste", + "name_prefix": "Editor@", + "path": "Editor.event.paste", + "outFile": "editor.html#Editor.event.paste" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", + "subclasses": [], + "name": "Editor", + "path": "Editor", + "outFile": "editor.html" + }, + { + "id": "EditSession", + "type": "class", + "description": "Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. \n\n`EditSession` can be attached to only one [[Document `Document`]]. Same `Document` can be attached to several `EditSession`s.", + "short_description": "Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. \n", + "line": 1530, + "author": [], + "aliases": [], + "children": [ + { + "id": "EditSession.$detectNewLine", + "type": "class method", + "description": "If `text` contains either the newline (`\\n`) or carriage-return ('\\r') characters, `$autoNewLine` stores that value.", + "short_description": "If `text` contains either the newline (`\\n`) or carriage-return ('\\r') characters, `$autoNewLine` stores that value.", + "line": 2234, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "A block of text", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "$detectNewLine", + "name_prefix": "EditSession.", + "path": "EditSession.$detectNewLine", + "outFile": "edit_session.html#EditSession.$detectNewLine" + }, + { + "id": "EditSession.$getDisplayTokens", + "type": "class method", + "description": "Given a string, returns an array of the display characters, including tabs and spaces.", + "short_description": "Given a string, returns an array of the display characters, including tabs and spaces.", + "line": 3446, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "str", + "description": "The string to check", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "offset", + "description": "The value to start at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "$getDisplayTokens", + "name_prefix": "EditSession.", + "path": "EditSession.$getDisplayTokens", + "outFile": "edit_session.html#EditSession.$getDisplayTokens" + }, + { + "id": "EditSession.$getStringScreenWidth", + "type": "class method", + "description": "Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen.", + "short_description": "Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen.", + "line": 3484, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "str", + "description": "The string to calculate the screen width of", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "maxScreenColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "screenColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "isArray": true, + "description": "Returns an `int[]` array with two elements:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nThe first position indicates the number of columns for `str` on screen.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nThe second value contains the position of the document column that this function read until." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "$getStringScreenWidth", + "name_prefix": "EditSession.", + "path": "EditSession.$getStringScreenWidth", + "outFile": "edit_session.html#EditSession.$getStringScreenWidth" + }, + { + "id": "EditSession.$mode", + "type": "class method", + "description": "Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted.", + "short_description": "Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted.", + "line": 2427, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "mode", + "description": "Set a new text mode", + "types": [ + "TextMode" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "$mode", + "name_prefix": "EditSession.", + "path": "EditSession.$mode", + "outFile": "edit_session.html#EditSession.$mode" + }, + { + "id": "EditSession.$resetRowCache", + "type": "class method", + "incomplete": true, + "line": 1700, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to work with", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "$resetRowCache", + "name_prefix": "EditSession.", + "path": "EditSession.$resetRowCache", + "outFile": "edit_session.html#EditSession.$resetRowCache" + }, + { + "id": "EditSession.addDynamicMarker", + "type": "class method", + "description": "Adds a dynamic marker to the session.", + "short_description": "Adds a dynamic marker to the session.", + "line": 2144, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "marker", + "description": "object with update method", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "inFront", + "description": "Set to `true` to establish a front marker", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "addDynamicMarker", + "name_prefix": "EditSession.", + "path": "EditSession.addDynamicMarker", + "outFile": "edit_session.html#EditSession.addDynamicMarker" + }, + { + "id": "EditSession.addGutterDecoration", + "type": "class method", + "description": "Adds `className` to the `row`, to be used for CSS stylings and whatnot.", + "short_description": "Adds `className` to the `row`, to be used for CSS stylings and whatnot.", + "line": 2026, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "className", + "description": "The class to add", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "addGutterDecoration", + "name_prefix": "EditSession.", + "path": "EditSession.addGutterDecoration", + "outFile": "edit_session.html#EditSession.addGutterDecoration" + }, + { + "id": "EditSession.addMarker", + "type": "class method", + "description": "Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires.", + "short_description": "Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires.", + "line": 2111, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "Define the range of the marker", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "clazz", + "description": "Set the CSS class for the marker", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "type", + "description": "Identify the type of the marker", + "types": [ + "Function", + "String" + ], + "optional": false + }, + { + "name": "inFront", + "description": "Set to `true` to establish a front marker", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "addMarker", + "name_prefix": "EditSession.", + "path": "EditSession.addMarker", + "outFile": "edit_session.html#EditSession.addMarker" + }, + { + "id": "EditSession.adjustWrapLimit", + "type": "class method", + "description": "This should generally only be called by the renderer when a resize is detected.", + "short_description": "This should generally only be called by the renderer when a resize is detected.", + "line": 3085, + "private": true, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "desiredLimit", + "description": "The new wrap limit", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "adjustWrapLimit", + "name_prefix": "EditSession.", + "path": "EditSession.adjustWrapLimit", + "outFile": "edit_session.html#EditSession.adjustWrapLimit" + }, + { + "id": "EditSession.clearAnnotations", + "type": "class method", + "description": "Clears all the annotations for this session. This function also triggers the `'changeAnnotation'` event.", + "short_description": "Clears all the annotations for this session. This function also triggers the `'changeAnnotation'` event.", + "line": 2226, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "clearAnnotations", + "name_prefix": "EditSession.", + "path": "EditSession.clearAnnotations", + "outFile": "edit_session.html#EditSession.clearAnnotations" + }, + { + "id": "EditSession.clearBreakpoint", + "type": "class method", + "description": "Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "short_description": "Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "line": 2100, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row index", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "clearBreakpoint", + "name_prefix": "EditSession.", + "path": "EditSession.clearBreakpoint", + "outFile": "edit_session.html#EditSession.clearBreakpoint" + }, + { + "id": "EditSession.clearBreakpoints", + "type": "class method", + "description": "Removes all breakpoints on the rows. This function also emites the `'changeBreakpoint'` event.", + "short_description": "Removes all breakpoints on the rows. This function also emites the `'changeBreakpoint'` event.", + "line": 2075, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "clearBreakpoints", + "name_prefix": "EditSession.", + "path": "EditSession.clearBreakpoints", + "outFile": "edit_session.html#EditSession.clearBreakpoints" + }, + { + "id": "EditSession.documentToScreenColumn", + "type": "class method", + "description": "For the given document row and column, returns the screen column.", + "short_description": "For the given document row and column, returns the screen column.", + "line": 3796, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "docColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "documentToScreenColumn", + "name_prefix": "EditSession.", + "path": "EditSession.documentToScreenColumn", + "outFile": "edit_session.html#EditSession.documentToScreenColumn" + }, + { + "id": "EditSession.documentToScreenPosition", + "type": "class method", + "description": "Converts document coordinates to screen coordinates. {:conversionConsiderations}", + "short_description": "Converts document coordinates to screen coordinates. {:conversionConsiderations}", + "line": 3699, + "author": [], + "related": "EditSession.screenToDocumentPosition", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "docRow", + "description": "The document row to check", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "docColumn", + "description": "The document column to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "The object returned by this method has two properties: `row` and `column`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "documentToScreenPosition", + "name_prefix": "EditSession.", + "path": "EditSession.documentToScreenPosition", + "outFile": "edit_session.html#EditSession.documentToScreenPosition" + }, + { + "id": "EditSession.documentToScreenRow", + "type": "class method", + "description": "For the given document row and column, returns the screen row.", + "short_description": "For the given document row and column, returns the screen row.", + "line": 3807, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "docRow", + "description": "", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "docColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "documentToScreenRow", + "name_prefix": "EditSession.", + "path": "EditSession.documentToScreenRow", + "outFile": "edit_session.html#EditSession.documentToScreenRow" + }, + { + "id": "EditSession.duplicateLines", + "type": "class method", + "description": "Duplicates all the text between `firstRow` and `lastRow`.", + "short_description": "Duplicates all the text between `firstRow` and `lastRow`.", + "line": 2945, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The starting row to duplicate", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row to duplicate", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "Returns the number of new rows added; in other words, `lastRow - firstRow + 1`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "duplicateLines", + "name_prefix": "EditSession.", + "path": "EditSession.duplicateLines", + "outFile": "edit_session.html#EditSession.duplicateLines" + }, + { + "id": "EditSession.getAnnotations", + "type": "class method", + "description": "Returns the annotations for the `EditSession`.", + "short_description": "Returns the annotations for the `EditSession`.", + "line": 2218, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getAnnotations", + "name_prefix": "EditSession.", + "path": "EditSession.getAnnotations", + "outFile": "edit_session.html#EditSession.getAnnotations" + }, + { + "id": "EditSession.getAWordRange", + "type": "class method", + "description": "Gets the range of a word, including its right whitespace.", + "short_description": "Gets the range of a word, including its right whitespace.", + "line": 2290, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number to start from", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column number to start from", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getAWordRange", + "name_prefix": "EditSession.", + "path": "EditSession.getAWordRange", + "outFile": "edit_session.html#EditSession.getAWordRange" + }, + { + "id": "EditSession.getBreakpoints", + "type": "class method", + "description": "Returns an array of numbers, indicating which rows have breakpoints.", + "short_description": "Returns an array of numbers, indicating which rows have breakpoints.", + "line": 2052, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getBreakpoints", + "name_prefix": "EditSession.", + "path": "EditSession.getBreakpoints", + "outFile": "edit_session.html#EditSession.getBreakpoints" + }, + { + "id": "EditSession.getDocument", + "type": "class method", + "description": "Returns the `Document` associated with this session.", + "short_description": "Returns the `Document` associated with this session.", + "line": 1692, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Document", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getDocument", + "name_prefix": "EditSession.", + "path": "EditSession.getDocument", + "outFile": "edit_session.html#EditSession.getDocument" + }, + { + "id": "EditSession.getDocumentLastRowColumn", + "type": "class method", + "description": "For the given document row and column, this returns the column position of the last screen row.", + "short_description": "For the given document row and column, this returns the column position of the last screen row.", + "line": 3551, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "docRow", + "description": "", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "docColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getDocumentLastRowColumn", + "name_prefix": "EditSession.", + "path": "EditSession.getDocumentLastRowColumn", + "outFile": "edit_session.html#EditSession.getDocumentLastRowColumn" + }, + { + "id": "EditSession.getDocumentLastRowColumnPosition", + "type": "class method", + "description": "For the given document row and column, this returns the document position of the last row.", + "short_description": "For the given document row and column, this returns the document position of the last row.", + "line": 3562, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "docRow", + "description": "", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "docColumn", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getDocumentLastRowColumnPosition", + "name_prefix": "EditSession.", + "path": "EditSession.getDocumentLastRowColumnPosition", + "outFile": "edit_session.html#EditSession.getDocumentLastRowColumnPosition" + }, + { + "id": "EditSession.getLength", + "type": "class method", + "description": "Returns the number of rows in the document.", + "short_description": "Returns the number of rows in the document.", + "line": 2631, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getLength", + "name_prefix": "EditSession.", + "path": "EditSession.getLength", + "outFile": "edit_session.html#EditSession.getLength" + }, + { + "id": "EditSession.getLine", + "type": "class method", + "description": "Returns a verbatim copy of the given line as it is in the document", + "short_description": "Returns a verbatim copy of the given line as it is in the document", + "line": 2607, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to retrieve from", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getLine", + "name_prefix": "EditSession.", + "path": "EditSession.getLine", + "outFile": "edit_session.html#EditSession.getLine" + }, + { + "id": "EditSession.getLines", + "type": "class method", + "description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", + "short_description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", + "line": 2619, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The first row index to retrieve", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row index to retrieve", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getLines", + "name_prefix": "EditSession.", + "path": "EditSession.getLines", + "outFile": "edit_session.html#EditSession.getLines" + }, + { + "id": "EditSession.getMarkers", + "type": "class method", + "description": "Returns an array containing the IDs of all the markers, either front or back.", + "short_description": "Returns an array containing the IDs of all the markers, either front or back.", + "line": 2189, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "inFront", + "description": "If `true`, indicates you only want front markers; `false` indicates only back markers", + "types": [ + "Boolean" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Array", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getMarkers", + "name_prefix": "EditSession.", + "path": "EditSession.getMarkers", + "outFile": "edit_session.html#EditSession.getMarkers" + }, + { + "id": "EditSession.getMode", + "type": "class method", + "description": "Returns the current text mode.", + "short_description": "Returns the current text mode.", + "line": 2512, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "TextMode", + "description": "The current text mode" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getMode", + "name_prefix": "EditSession.", + "path": "EditSession.getMode", + "outFile": "edit_session.html#EditSession.getMode" + }, + { + "id": "EditSession.getNewLineMode", + "type": "class method", + "description": "Returns the current new line mode.", + "short_description": "Returns the current new line mode.", + "line": 2318, + "author": [], + "related": "Document.getNewLineMode", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getNewLineMode", + "name_prefix": "EditSession.", + "path": "EditSession.getNewLineMode", + "outFile": "edit_session.html#EditSession.getNewLineMode" + }, + { + "id": "EditSession.getOverwrite", + "type": "class method", + "description": "Returns `true` if overwrites are enabled; `false` otherwise.", + "short_description": "Returns `true` if overwrites are enabled; `false` otherwise.", + "line": 2012, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getOverwrite", + "name_prefix": "EditSession.", + "path": "EditSession.getOverwrite", + "outFile": "edit_session.html#EditSession.getOverwrite" + }, + { + "id": "EditSession.getRowLength", + "type": "class method", + "description": "Returns number of screenrows in a wrapped line.", + "short_description": "Returns number of screenrows in a wrapped line.", + "line": 3525, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getRowLength", + "name_prefix": "EditSession.", + "path": "EditSession.getRowLength", + "outFile": "edit_session.html#EditSession.getRowLength" + }, + { + "id": "EditSession.getRowSplitData", + "type": "class method", + "description": "For the given row, this returns the split data.", + "short_description": "For the given row, this returns the split data.", + "line": 3574, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getRowSplitData", + "name_prefix": "EditSession.", + "path": "EditSession.getRowSplitData", + "outFile": "edit_session.html#EditSession.getRowSplitData" + }, + { + "id": "EditSession.getScreenLastRowColumn", + "type": "class method", + "description": "Returns the position (on screen) for the last character in the provided screen row.", + "short_description": "Returns the position (on screen) for the last character in the provided screen row.", + "line": 3539, + "author": [], + "related": "EditSession.documentToScreenColumn", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "screenRow", + "description": "The screen row to check", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScreenLastRowColumn", + "name_prefix": "EditSession.", + "path": "EditSession.getScreenLastRowColumn", + "outFile": "edit_session.html#EditSession.getScreenLastRowColumn" + }, + { + "id": "EditSession.getScreenLength", + "type": "class method", + "description": "Returns the length of the screen.", + "short_description": "Returns the length of the screen.", + "line": 3818, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScreenLength", + "name_prefix": "EditSession.", + "path": "EditSession.getScreenLength", + "outFile": "edit_session.html#EditSession.getScreenLength" + }, + { + "id": "EditSession.getScreenTabSize", + "type": "class method", + "description": "The distance to the next tab stop at the specified screen column.", + "short_description": "The distance to the next tab stop at the specified screen column.", + "line": 3586, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "screenColumn", + "description": "The screen column to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScreenTabSize", + "name_prefix": "EditSession.", + "path": "EditSession.getScreenTabSize", + "outFile": "edit_session.html#EditSession.getScreenTabSize" + }, + { + "id": "EditSession.getScreenWidth", + "type": "class method", + "description": "Returns the width of the screen.", + "short_description": "Returns the width of the screen.", + "line": 2564, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScreenWidth", + "name_prefix": "EditSession.", + "path": "EditSession.getScreenWidth", + "outFile": "edit_session.html#EditSession.getScreenWidth" + }, + { + "id": "EditSession.getScrollLeft", + "type": "class method", + "description": "[Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft}", + "short_description": "[Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft}", + "line": 2556, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScrollLeft", + "name_prefix": "EditSession.", + "path": "EditSession.getScrollLeft", + "outFile": "edit_session.html#EditSession.getScrollLeft" + }, + { + "id": "EditSession.getScrollTop", + "type": "class method", + "description": "[Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop}", + "short_description": "[Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop}", + "line": 2535, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getScrollTop", + "name_prefix": "EditSession.", + "path": "EditSession.getScrollTop", + "outFile": "edit_session.html#EditSession.getScrollTop" + }, + { + "id": "EditSession.getSelection", + "type": "class method", + "description": "Returns the string of the current selection.", + "short_description": "Returns the string of the current selection.", + "line": 1801, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getSelection", + "name_prefix": "EditSession.", + "path": "EditSession.getSelection", + "outFile": "edit_session.html#EditSession.getSelection" + }, + { + "id": "EditSession.getState", + "type": "class method", + "description": "{:BackgroundTokenizer.getState}", + "short_description": "{:BackgroundTokenizer.getState}", + "line": 1808, + "author": [], + "related": "BackgroundTokenizer.getState", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to start at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getState", + "name_prefix": "EditSession.", + "path": "EditSession.getState", + "outFile": "edit_session.html#EditSession.getState" + }, + { + "id": "EditSession.getTabSize", + "type": "class method", + "description": "Returns the current tab size.", + "short_description": "Returns the current tab size.", + "line": 1978, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getTabSize", + "name_prefix": "EditSession.", + "path": "EditSession.getTabSize", + "outFile": "edit_session.html#EditSession.getTabSize" + }, + { + "id": "EditSession.getTabString", + "type": "class method", + "description": "Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by [[EditSession.getTabSize `getTabSize()`]]); otherwise it's simply `'\\t'`.", + "short_description": "Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by [[EditSession.getTabSize `getTabSize()`]]); otherwise it's simply `'\\t'`.", + "line": 1929, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getTabString", + "name_prefix": "EditSession.", + "path": "EditSession.getTabString", + "outFile": "edit_session.html#EditSession.getTabString" + }, + { + "id": "EditSession.getTextRange", + "type": "class method", + "description": "{:Document.getTextRange.desc}", + "short_description": "{:Document.getTextRange.desc}", + "line": 2639, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "The range to work with", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getTextRange", + "name_prefix": "EditSession.", + "path": "EditSession.getTextRange", + "outFile": "edit_session.html#EditSession.getTextRange" + }, + { + "id": "EditSession.getTokenAt", + "type": "class method", + "description": "Returns an object indicating the token at the current row. The object has two properties: `index` and `start`.", + "short_description": "Returns an object indicating the token at the current row. The object has two properties: `index` and `start`.", + "line": 1829, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number to retrieve from", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column number to retrieve from", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getTokenAt", + "name_prefix": "EditSession.", + "path": "EditSession.getTokenAt", + "outFile": "edit_session.html#EditSession.getTokenAt" + }, + { + "id": "EditSession.getTokens", + "type": "class method", + "description": "Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.", + "short_description": "Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.", + "line": 1818, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to start at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getTokens", + "name_prefix": "EditSession.", + "path": "EditSession.getTokens", + "outFile": "edit_session.html#EditSession.getTokens" + }, + { + "id": "EditSession.getUndoManager", + "type": "class method", + "description": "Returns the current undo manager.", + "short_description": "Returns the current undo manager.", + "line": 1922, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getUndoManager", + "name_prefix": "EditSession.", + "path": "EditSession.getUndoManager", + "outFile": "edit_session.html#EditSession.getUndoManager" + }, + { + "id": "EditSession.getUseSoftTabs", + "type": "class method", + "description": "Returns `true` if soft tabs are being used, `false` otherwise.", + "short_description": "Returns `true` if soft tabs are being used, `false` otherwise.", + "line": 1954, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getUseSoftTabs", + "name_prefix": "EditSession.", + "path": "EditSession.getUseSoftTabs", + "outFile": "edit_session.html#EditSession.getUseSoftTabs" + }, + { + "id": "EditSession.getUseWorker", + "type": "class method", + "description": "Returns `true` if workers are being used.", + "short_description": "Returns `true` if workers are being used.", + "line": 2346, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getUseWorker", + "name_prefix": "EditSession.", + "path": "EditSession.getUseWorker", + "outFile": "edit_session.html#EditSession.getUseWorker" + }, + { + "id": "EditSession.getUseWrapMode", + "type": "class method", + "description": "Returns `true` if wrap mode is being used; `false` otherwise.", + "short_description": "Returns `true` if wrap mode is being used; `false` otherwise.", + "line": 3056, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getUseWrapMode", + "name_prefix": "EditSession.", + "path": "EditSession.getUseWrapMode", + "outFile": "edit_session.html#EditSession.getUseWrapMode" + }, + { + "id": "EditSession.getValue", + "type": "class method", + "description": "Returns the current [[Document `Document`]] as a string.", + "short_description": "Returns the current [[Document `Document`]] as a string.", + "line": 1791, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getValue", + "name_prefix": "EditSession.", + "path": "EditSession.getValue", + "outFile": "edit_session.html#EditSession.getValue" + }, + { + "id": "EditSession.getWordRange", + "type": "class method", + "description": "Given a starting row and column, this method returns the `Range` of the first word boundary it finds.", + "short_description": "Given a starting row and column, this method returns the `Range` of the first word boundary it finds.", + "line": 2249, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to start at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column to start at", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getWordRange", + "name_prefix": "EditSession.", + "path": "EditSession.getWordRange", + "outFile": "edit_session.html#EditSession.getWordRange" + }, + { + "id": "EditSession.getWrapLimit", + "type": "class method", + "description": "Returns the value of wrap limit.", + "short_description": "Returns the value of wrap limit.", + "line": 3121, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getWrapLimit", + "name_prefix": "EditSession.", + "path": "EditSession.getWrapLimit", + "outFile": "edit_session.html#EditSession.getWrapLimit" + }, + { + "id": "EditSession.getWrapLimitRange", + "type": "class method", + "description": "Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:\n\n{ min: wrapLimitRange_min, max: wrapLimitRange_max }", + "short_description": "Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:\n", + "line": 3128, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "getWrapLimitRange", + "name_prefix": "EditSession.", + "path": "EditSession.getWrapLimitRange", + "outFile": "edit_session.html#EditSession.getWrapLimitRange" + }, + { + "id": "EditSession.indentRows", + "type": "class method", + "description": "Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`.\n\nIf `indentString` contains the `'\\t'` character, it's replaced by whatever is defined by [[EditSession.getTabString `getTabString()`]].", + "short_description": "Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`.\n", + "line": 2864, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "startRow", + "description": "Starting row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "endRow", + "description": "Ending row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "indentString", + "description": "The indent token", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "indentRows", + "name_prefix": "EditSession.", + "path": "EditSession.indentRows", + "outFile": "edit_session.html#EditSession.indentRows" + }, + { + "id": "EditSession.insert", + "type": "class method", + "description": "Inserts a block of `text` and the indicated `position`.", + "short_description": "Inserts a block of `text` and the indicated `position`.", + "line": 2649, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to start inserting at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "text", + "description": "A chunk of text to insert", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "insert", + "name_prefix": "EditSession.", + "path": "EditSession.insert", + "outFile": "edit_session.html#EditSession.insert" + }, + { + "id": "EditSession.isTabStop", + "type": "class method", + "description": "Returns `true` if the character at the position is a soft tab.", + "short_description": "Returns `true` if the character at the position is a soft tab.", + "line": 1985, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to check", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "isTabStop", + "name_prefix": "EditSession.", + "path": "EditSession.isTabStop", + "outFile": "edit_session.html#EditSession.isTabStop" + }, + { + "id": "EditSession.moveLinesDown", + "type": "class method", + "description": "Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`.", + "short_description": "Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`.", + "line": 2927, + "author": [], + "related": "Document.insertLines", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The starting row to move down", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row to move down", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "moveLinesDown", + "name_prefix": "EditSession.", + "path": "EditSession.moveLinesDown", + "outFile": "edit_session.html#EditSession.moveLinesDown" + }, + { + "id": "EditSession.moveLinesUp", + "type": "class method", + "description": "Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`.", + "short_description": "Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`.", + "line": 2910, + "author": [], + "related": "Document.insertLines", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The starting row to move up", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The final row to move up", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "moveLinesUp", + "name_prefix": "EditSession.", + "path": "EditSession.moveLinesUp", + "outFile": "edit_session.html#EditSession.moveLinesUp" + }, + { + "id": "EditSession.moveText", + "type": "class method", + "description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n ```json\n { row: newRowLocation, column: newColumnLocation }\n```", + "short_description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n ```json\n { row: newRowLocation, column: newColumnLocation }\n```", + "line": 2822, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "fromRange", + "description": "The range of text you want moved within the document", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "toPosition", + "description": "The location (row and column) where you want to move the text to", + "types": [ + "Object" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "The new range where the text was moved to." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "moveText", + "name_prefix": "EditSession.", + "path": "EditSession.moveText", + "outFile": "edit_session.html#EditSession.moveText" + }, + { + "id": "new EditSession", + "type": "constructor", + "description": "Sets up a new `EditSession` and associates it with the given `Document` and `TextMode`.", + "short_description": "Sets up a new `EditSession` and associates it with the given `Document` and `TextMode`.", + "line": 1627, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "If `text` is a `Document`, it associates the `EditSession` with it. Otherwise, a new `Document` is created, with the initial text", + "types": [ + "Document", + "String" + ], + "optional": false + }, + { + "name": "mode", + "description": "The inital language mode to use for the document", + "types": [ + "TextMode" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "new", + "name_prefix": "EditSession.", + "path": "EditSession.new", + "outFile": "edit_session.html#EditSession.new" + }, + { + "id": "EditSession.onReloadTokenizer", + "type": "class method", + "description": "Reloads all the tokens on the current session. This function calls [[BackgroundTokenizer.start `BackgroundTokenizer.start ()`]] to all the rows; it also emits the `'tokenizerUpdate'` event.", + "short_description": "Reloads all the tokens on the current session. This function calls [[BackgroundTokenizer.start `BackgroundTokenizer.start ()`]] to all the rows; it also emits the `'tokenizerUpdate'` event.", + "line": 2353, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "onReloadTokenizer", + "name_prefix": "EditSession.", + "path": "EditSession.onReloadTokenizer", + "outFile": "edit_session.html#EditSession.onReloadTokenizer" + }, + { + "id": "EditSession.outdentRows", + "type": "class method", + "description": "Outdents all the rows defined by the `start` and `end` properties of `range`.", + "short_description": "Outdents all the rows defined by the `start` and `end` properties of `range`.", + "line": 2880, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A range of rows", + "types": [ + "Range" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "outdentRows", + "name_prefix": "EditSession.", + "path": "EditSession.outdentRows", + "outFile": "edit_session.html#EditSession.outdentRows" + }, + { + "id": "EditSession.redoChanges", + "type": "class method", + "description": "Re-implements a previously undone change to your document.", + "short_description": "Re-implements a previously undone change to your document.", + "line": 2707, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltas", + "description": "An array of previous changes", + "types": [ + "Array" + ], + "optional": false + }, + { + "name": "dontSelect", + "description": "{:dontSelect}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "redoChanges", + "name_prefix": "EditSession.", + "path": "EditSession.redoChanges", + "outFile": "edit_session.html#EditSession.redoChanges" + }, + { + "id": "EditSession.remove", + "type": "class method", + "description": "Removes the `range` from the document.", + "short_description": "Removes the `range` from the document.", + "line": 2661, + "author": [], + "related": "Document.remove", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A specified Range to remove", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "remove", + "name_prefix": "EditSession.", + "path": "EditSession.remove", + "outFile": "edit_session.html#EditSession.remove" + }, + { + "id": "EditSession.removeGutterDecoration", + "type": "class method", + "description": "Removes `className` from the `row`.", + "short_description": "Removes `className` from the `row`.", + "line": 2040, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row number", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "className", + "description": "The class to add", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "removeGutterDecoration", + "name_prefix": "EditSession.", + "path": "EditSession.removeGutterDecoration", + "outFile": "edit_session.html#EditSession.removeGutterDecoration" + }, + { + "id": "EditSession.removeMarker", + "type": "class method", + "description": "Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted.", + "short_description": "Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted.", + "line": 2170, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "markerId", + "description": "A number representing a marker", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "removeMarker", + "name_prefix": "EditSession.", + "path": "EditSession.removeMarker", + "outFile": "edit_session.html#EditSession.removeMarker" + }, + { + "id": "EditSession.replace", + "type": "class method", + "description": "Replaces a range in the document with the new `text`.", + "short_description": "Replaces a range in the document with the new `text`.", + "line": 2800, + "author": [], + "related": "Document.replace", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A specified Range to replace", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "text", + "description": "The new text to use as a replacement", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "An object containing the final row and column, like this: \n```\n{row: endRow, column: 0}\n``` \nIf the text and range are empty, this function returns an object containing the current `range.start` value. \nIf the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "replace", + "name_prefix": "EditSession.", + "path": "EditSession.replace", + "outFile": "edit_session.html#EditSession.replace" + }, + { + "id": "EditSession.screenToDocumentPosition", + "type": "class method", + "description": "Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations}", + "short_description": "Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations}", + "line": 3607, + "author": [], + "related": "EditSession.documentToScreenPosition", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "screenRow", + "description": "The screen row to check", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "screenColumn", + "description": "The screen column to check", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "The object returned has two properties: `row` and `column`." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "screenToDocumentPosition", + "name_prefix": "EditSession.", + "path": "EditSession.screenToDocumentPosition", + "outFile": "edit_session.html#EditSession.screenToDocumentPosition" + }, + { + "id": "EditSession.setAnnotations", + "type": "class method", + "description": "Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event.", + "short_description": "Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event.", + "line": 2208, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "annotations", + "description": "A list of annotations", + "types": [ + "Array" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setAnnotations", + "name_prefix": "EditSession.", + "path": "EditSession.setAnnotations", + "outFile": "edit_session.html#EditSession.setAnnotations" + }, + { + "id": "EditSession.setBreakpoint", + "type": "class method", + "description": "Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "short_description": "Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "line": 2083, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row index", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "className", + "description": "Class of the breakpoint", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setBreakpoint", + "name_prefix": "EditSession.", + "path": "EditSession.setBreakpoint", + "outFile": "edit_session.html#EditSession.setBreakpoint" + }, + { + "id": "EditSession.setBreakpoints", + "type": "class method", + "description": "Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "short_description": "Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", + "line": 2060, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "rows", + "description": "An array of row indicies", + "types": [ + "[Number]" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setBreakpoints", + "name_prefix": "EditSession.", + "path": "EditSession.setBreakpoints", + "outFile": "edit_session.html#EditSession.setBreakpoints" + }, + { + "id": "EditSession.setDocument", + "type": "class method", + "description": "Sets the `EditSession` to point to a new `Document`. If a `BackgroundTokenizer` exists, it also points to `doc`.", + "short_description": "Sets the `EditSession` to point to a new `Document`. If a `BackgroundTokenizer` exists, it also points to `doc`.", + "line": 1672, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "doc", + "description": "The new `Document` to use", + "types": [ + "Document" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setDocument", + "name_prefix": "EditSession.", + "path": "EditSession.setDocument", + "outFile": "edit_session.html#EditSession.setDocument" + }, + { + "id": "EditSession.setNewLineMode", + "type": "class method", + "description": "{:Document.setNewLineMode.desc}", + "short_description": "{:Document.setNewLineMode.desc}", + "line": 2307, + "author": [], + "related": "Document.setNewLineMode", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "newLineMode", + "description": "{:Document.setNewLineMode.param}", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setNewLineMode", + "name_prefix": "EditSession.", + "path": "EditSession.setNewLineMode", + "outFile": "edit_session.html#EditSession.setNewLineMode" + }, + { + "id": "EditSession.setOverwrite", + "type": "class method", + "description": "Pass in `true` to enable overwrites in your session, or `false` to disable. \n\nIf overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", + "short_description": "Pass in `true` to enable overwrites in your session, or `false` to disable. \n", + "line": 1996, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "overwrite", + "description": "Defines wheter or not to set overwrites", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setOverwrite", + "name_prefix": "EditSession.", + "path": "EditSession.setOverwrite", + "outFile": "edit_session.html#EditSession.setOverwrite" + }, + { + "id": "EditSession.setScrollLeft", + "type": "class method", + "description": "[Sets the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.setScrollLeft}", + "short_description": "[Sets the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.setScrollLeft}", + "line": 2544, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollLeft", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setScrollLeft", + "name_prefix": "EditSession.", + "path": "EditSession.setScrollLeft", + "outFile": "edit_session.html#EditSession.setScrollLeft" + }, + { + "id": "EditSession.setScrollTop", + "type": "class method", + "description": "This function sets the scroll top value. It also emits the `'changeScrollTop'` event.", + "short_description": "This function sets the scroll top value. It also emits the `'changeScrollTop'` event.", + "line": 2521, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollTop", + "description": "The new scroll top value", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setScrollTop", + "name_prefix": "EditSession.", + "path": "EditSession.setScrollTop", + "outFile": "edit_session.html#EditSession.setScrollTop" + }, + { + "id": "EditSession.setTabSize", + "type": "class method", + "description": "Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event.", + "short_description": "Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event.", + "line": 1963, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "tabSize", + "description": "The new tab size", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setTabSize", + "name_prefix": "EditSession.", + "path": "EditSession.setTabSize", + "outFile": "edit_session.html#EditSession.setTabSize" + }, + { + "id": "EditSession.setUndoManager", + "type": "class method", + "description": "Sets the undo manager.", + "short_description": "Sets the undo manager.", + "line": 1865, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "undoManager", + "description": "The new undo manager", + "types": [ + "UndoManager" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setUndoManager", + "name_prefix": "EditSession.", + "path": "EditSession.setUndoManager", + "outFile": "edit_session.html#EditSession.setUndoManager" + }, + { + "id": "EditSession.setUndoSelect", + "type": "class method", + "description": "Enables or disables highlighting of the range where an undo occured.", + "short_description": "Enables or disables highlighting of the range where an undo occured.", + "line": 2737, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "enable", + "description": "If `true`, selects the range of the reinserted change", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setUndoSelect", + "name_prefix": "EditSession.", + "path": "EditSession.setUndoSelect", + "outFile": "edit_session.html#EditSession.setUndoSelect" + }, + { + "id": "EditSession.setUseSoftTabs", + "type": "class method", + "description": "Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\\t'`).", + "short_description": "Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\\t'`).", + "line": 1941, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "useSoftTabs", + "description": "Value indicating whether or not to use soft tabs", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setUseSoftTabs", + "name_prefix": "EditSession.", + "path": "EditSession.setUseSoftTabs", + "outFile": "edit_session.html#EditSession.setUseSoftTabs" + }, + { + "id": "EditSession.setUseWorker", + "type": "class method", + "description": "Identifies if you want to use a worker for the `EditSession`.", + "short_description": "Identifies if you want to use a worker for the `EditSession`.", + "line": 2330, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "useWorker", + "description": "Set to `true` to use a worker", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setUseWorker", + "name_prefix": "EditSession.", + "path": "EditSession.setUseWorker", + "outFile": "edit_session.html#EditSession.setUseWorker" + }, + { + "id": "EditSession.setUseWrapMode", + "type": "class method", + "description": "Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted.", + "short_description": "Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted.", + "line": 3030, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "useWrapMode", + "description": "Enable (or disable) wrap mode", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setUseWrapMode", + "name_prefix": "EditSession.", + "path": "EditSession.setUseWrapMode", + "outFile": "edit_session.html#EditSession.setUseWrapMode" + }, + { + "id": "EditSession.setValue", + "type": "class method", + "description": "Sets the session text.", + "short_description": "Sets the session text.", + "line": 1765, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "The new text to place", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setValue", + "name_prefix": "EditSession.", + "path": "EditSession.setValue", + "outFile": "edit_session.html#EditSession.setValue" + }, + { + "id": "EditSession.setWrapLimitRange", + "type": "class method", + "description": "Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event.", + "short_description": "Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event.", + "line": 3068, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "min", + "description": "The minimum wrap value (the left side wrap)", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "max", + "description": "The maximum wrap value (the right side wrap)", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "setWrapLimitRange", + "name_prefix": "EditSession.", + "path": "EditSession.setWrapLimitRange", + "outFile": "edit_session.html#EditSession.setWrapLimitRange" + }, + { + "id": "EditSession.toggleOverwrite", + "type": "class method", + "description": "Sets the value of overwrite to the opposite of whatever it currently is.", + "short_description": "Sets the value of overwrite to the opposite of whatever it currently is.", + "line": 2019, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "toggleOverwrite", + "name_prefix": "EditSession.", + "path": "EditSession.toggleOverwrite", + "outFile": "edit_session.html#EditSession.toggleOverwrite" + }, + { + "id": "EditSession.toString", + "type": "class method", + "description": "Returns the current [[Document `Document`]] as a string.", + "short_description": "Returns the current [[Document `Document`]] as a string.", + "line": 1784, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "toString", + "name_prefix": "EditSession.", + "path": "EditSession.toString", + "outFile": "edit_session.html#EditSession.toString" + }, + { + "id": "EditSession.undoChanges", + "type": "class method", + "description": "Reverts previous changes to your document.", + "short_description": "Reverts previous changes to your document.", + "line": 2673, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltas", + "description": "An array of previous changes", + "types": [ + "Array" + ], + "optional": false + }, + { + "name": "dontSelect", + "description": "[If `true`, doesn't select the range of where the change occured]{: #dontSelect}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "undoChanges", + "name_prefix": "EditSession.", + "path": "EditSession.undoChanges", + "outFile": "edit_session.html#EditSession.undoChanges" + }, + { + "id": "EditSession@change", + "type": "event", + "description": "Emitted when the document changes.", + "short_description": "Emitted when the document changes.", + "line": 1540, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "An object containing a `delta` of information about the change.", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "change", + "name_prefix": "EditSession@", + "path": "EditSession.event.change", + "outFile": "edit_session.html#EditSession.event.change" + }, + { + "id": "EditSession@changeAnnotation", + "type": "event", + "description": "Emitted when an annotation changes, like through [[EditSession.setAnnotations]].", + "short_description": "Emitted when an annotation changes, like through [[EditSession.setAnnotations]].", + "line": 1571, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeAnnotation", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeAnnotation", + "outFile": "edit_session.html#EditSession.event.changeAnnotation" + }, + { + "id": "EditSession@changeBackMarker", + "type": "event", + "description": "Emitted when a back marker changes.", + "short_description": "Emitted when a back marker changes.", + "line": 1566, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeBackMarker", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeBackMarker", + "outFile": "edit_session.html#EditSession.event.changeBackMarker" + }, + { + "id": "EditSession@changeBreakpoint", + "type": "event", + "description": "Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.", + "short_description": "Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.", + "line": 1556, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeBreakpoint", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeBreakpoint", + "outFile": "edit_session.html#EditSession.event.changeBreakpoint" + }, + { + "id": "EditSession@changeFold", + "type": "event", + "description": "Emitted when a code fold is added or removed.", + "short_description": "Emitted when a code fold is added or removed.", + "line": 1607, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeFold", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeFold", + "outFile": "edit_session.html#EditSession.event.changeFold" + }, + { + "id": "EditSession@changeFrontMarker", + "type": "event", + "description": "Emitted when a front marker changes.", + "short_description": "Emitted when a front marker changes.", + "line": 1561, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeFrontMarker", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeFrontMarker", + "outFile": "edit_session.html#EditSession.event.changeFrontMarker" + }, + { + "id": "EditSession@changeMode", + "type": "event", + "description": "Emitted when the current mode changes.", + "short_description": "Emitted when the current mode changes.", + "line": 1589, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeMode", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeMode", + "outFile": "edit_session.html#EditSession.event.changeMode" + }, + { + "id": "EditSession@changeOverwrite", + "type": "event", + "description": "Emitted when the ability to overwrite text changes, via [[EditSession.setOverwrite]].", + "short_description": "Emitted when the ability to overwrite text changes, via [[EditSession.setOverwrite]].", + "line": 1551, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeOverwrite", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeOverwrite", + "outFile": "edit_session.html#EditSession.event.changeOverwrite" + }, + { + "id": "EditSession@changeScrollLeft", + "type": "event", + "description": "Emitted when the scroll left changes.", + "short_description": "Emitted when the scroll left changes.", + "line": 1619, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollLeft", + "description": "The new scroll left value", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeScrollLeft", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeScrollLeft", + "outFile": "edit_session.html#EditSession.event.changeScrollLeft" + }, + { + "id": "EditSession@changeScrollTop", + "type": "event", + "description": "Emitted when the scroll top changes.", + "short_description": "Emitted when the scroll top changes.", + "line": 1613, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollTop", + "description": "The new scroll top value", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeScrollTop", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeScrollTop", + "outFile": "edit_session.html#EditSession.event.changeScrollTop" + }, + { + "id": "EditSession@changeTabSize", + "type": "event", + "description": "Emitted when the tab size changes, via [[EditSession.setTabSize]].", + "short_description": "Emitted when the tab size changes, via [[EditSession.setTabSize]].", + "line": 1546, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeTabSize", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeTabSize", + "outFile": "edit_session.html#EditSession.event.changeTabSize" + }, + { + "id": "EditSession@changeWrapLimit", + "type": "event", + "description": "Emitted when the wrapping limit changes.", + "short_description": "Emitted when the wrapping limit changes.", + "line": 1601, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeWrapLimit", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeWrapLimit", + "outFile": "edit_session.html#EditSession.event.changeWrapLimit" + }, + { + "id": "EditSession@changeWrapMode", + "type": "event", + "description": "Emitted when the wrap mode changes.", + "short_description": "Emitted when the wrap mode changes.", + "line": 1595, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "changeWrapMode", + "name_prefix": "EditSession@", + "path": "EditSession.event.changeWrapMode", + "outFile": "edit_session.html#EditSession.event.changeWrapMode" + }, + { + "id": "EditSession@loadMode", + "type": "event", + "description": "Emitted when the mode is loaded.", + "short_description": "Emitted when the mode is loaded.", + "line": 1583, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "loadMode", + "name_prefix": "EditSession@", + "path": "EditSession.event.loadMode", + "outFile": "edit_session.html#EditSession.event.loadMode" + }, + { + "id": "EditSession@tokenizerUpdate", + "type": "event", + "description": "Emitted when a background tokenizer asynchronously processes new rows.", + "short_description": "Emitted when a background tokenizer asynchronously processes new rows.", + "line": 1576, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "An object containing one property, `\"data\"`, that contains information about the changing rows", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "name": "tokenizerUpdate", + "name_prefix": "EditSession@", + "path": "EditSession.event.tokenizerUpdate", + "outFile": "edit_session.html#EditSession.event.tokenizerUpdate" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", + "subclasses": [], + "name": "EditSession", + "path": "EditSession", + "outFile": "edit_session.html" + }, + { + "id": "PlaceHolder", + "type": "class", + "incomplete": true, + "line": 14534, + "author": [], + "aliases": [], + "children": [ + { + "id": "PlaceHolder.cancel", + "type": "class method", + "description": "PlaceHolder.cancel()\n\nTODO", + "short_description": "PlaceHolder.cancel()\n", + "line": 14747, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "cancel", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.cancel", + "outFile": "placeholder.html#PlaceHolder.cancel" + }, + { + "id": "PlaceHolder.detach", + "type": "class method", + "description": "PlaceHolder.detach()\n\nTODO", + "short_description": "PlaceHolder.detach()\n", + "line": 14729, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "detach", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.detach", + "outFile": "placeholder.html#PlaceHolder.detach" + }, + { + "id": "PlaceHolder.hideOtherMarkers", + "type": "class method", + "description": "PlaceHolder.hideOtherMarkers()\n\nHides all over markers in the [[EditSession `EditSession`]] that are not the currently selected one.", + "short_description": "PlaceHolder.hideOtherMarkers()\n", + "line": 14628, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "hideOtherMarkers", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.hideOtherMarkers", + "outFile": "placeholder.html#PlaceHolder.hideOtherMarkers" + }, + { + "id": "new PlaceHolder", + "type": "constructor", + "description": "- session (Document): The document to associate with the anchor\n- length (Number): The starting row position\n- pos (Number): The starting column position\n- others (String):\n- mainClass (String):\n- othersClass (String):", + "short_description": "- session (Document): The document to associate with the anchor\n- length (Number): The starting row position\n- pos (Number): The starting column position\n- others (String):\n- mainClass (String):\n- othersClass (String):", + "line": 14540, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "new", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.new", + "outFile": "placeholder.html#PlaceHolder.new" + }, + { + "id": "PlaceHolder.onCursorChange", + "type": "class method", + "description": "PlaceHolder@onCursorChange(e)\n\nEmitted when the cursor changes.", + "short_description": "PlaceHolder@onCursorChange(e)\n", + "line": 14710, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "event", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "onCursorChange", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.onCursorChange", + "outFile": "placeholder.html#PlaceHolder.onCursorChange" + }, + { + "id": "PlaceHolder.onUpdate", + "type": "class method", + "description": "PlaceHolder@onUpdate(e)\n\nEmitted when the place holder updates.", + "short_description": "PlaceHolder@onUpdate(e)\n", + "line": 14642, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "event", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "onUpdate", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.onUpdate", + "outFile": "placeholder.html#PlaceHolder.onUpdate" + }, + { + "id": "PlaceHolder.setup", + "type": "class method", + "description": "PlaceHolder.setup()\n\nTODO", + "short_description": "PlaceHolder.setup()\n", + "line": 14582, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "setup", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.setup", + "outFile": "placeholder.html#PlaceHolder.setup" + }, + { + "id": "PlaceHolder.showOtherMarkers", + "type": "class method", + "description": "PlaceHolder.showOtherMarkers()\n\nTODO", + "short_description": "PlaceHolder.showOtherMarkers()\n", + "line": 14608, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "name": "showOtherMarkers", + "name_prefix": "PlaceHolder.", + "path": "PlaceHolder.showOtherMarkers", + "outFile": "placeholder.html#PlaceHolder.showOtherMarkers" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", + "subclasses": [], + "name": "PlaceHolder", + "path": "PlaceHolder", + "outFile": "placeholder.html" + }, + { + "id": "Range", + "type": "class", + "description": "This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.", + "short_description": "This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.", + "line": 14780, + "author": [], + "aliases": [], + "children": [ + { + "id": "Range.clipRows", + "type": "class method", + "description": "Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object.", + "short_description": "Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object.", + "line": 15188, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The starting row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The ending row", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "clipRows", + "name_prefix": "Range.", + "path": "Range.clipRows", + "outFile": "range.html#Range.clipRows" + }, + { + "id": "Range.clone", + "type": "class method", + "description": "Returns a duplicate of the calling range.", + "short_description": "Returns a duplicate of the calling range.", + "line": 15261, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "clone", + "name_prefix": "Range.", + "path": "Range.clone", + "outFile": "range.html#Range.clone" + }, + { + "id": "Range.collapseRows", + "type": "class method", + "description": "Returns a range containing the starting and ending rows of the original range, but with a column value of `0`.", + "short_description": "Returns a range containing the starting and ending rows of the original range, but with a column value of `0`.", + "line": 15270, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "collapseRows", + "name_prefix": "Range.", + "path": "Range.collapseRows", + "outFile": "range.html#Range.collapseRows" + }, + { + "id": "Range.compare", + "type": "class method", + "description": "Checks the row and column points with the row and column points of the calling range.", + "short_description": "Checks the row and column points with the row and column points of the calling range.", + "line": 15067, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "compare", + "name_prefix": "Range.", + "path": "Range.compare", + "outFile": "range.html#Range.compare" + }, + { + "id": "Range.compareEnd", + "type": "class method", + "description": "Checks the row and column points with the row and column points of the calling range.", + "short_description": "Checks the row and column points with the row and column points of the calling range.", + "line": 15138, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range, or if `isEnd` is `true.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "compareEnd", + "name_prefix": "Range.", + "path": "Range.compareEnd", + "outFile": "range.html#Range.compareEnd" + }, + { + "id": "Range.compareInside", + "type": "class method", + "description": "Checks the row and column points with the row and column points of the calling range.", + "short_description": "Checks the row and column points with the row and column points of the calling range.", + "line": 15165, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `1` if the ending row of the calling range is equal to `row`, and the ending column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1` if the starting row of the calling range is equal to `row`, and the starting column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns the value after calling [[Range.compare `compare()`]]." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "compareInside", + "name_prefix": "Range.", + "path": "Range.compareInside", + "outFile": "range.html#Range.compareInside" + }, + { + "id": "Range.comparePoint", + "type": "class method", + "description": "Checks the row and column points of `p` with the row and column points of the calling range.", + "short_description": "Checks the row and column points of `p` with the row and column points of the calling range.", + "line": 14898, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "p", + "description": "A point to compare with", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* Otherwise, it returns 1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              " + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "comparePoint", + "name_prefix": "Range.", + "path": "Range.comparePoint", + "outFile": "range.html#Range.comparePoint" + }, + { + "id": "Range.compareRange", + "type": "class method", + "description": "Compares `this` range (A) with another range (B).", + "short_description": "Compares `this` range (A) with another range (B).", + "line": 14854, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A range to compare with", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-2`: (B) is in front of (A), and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1`: (B) begins before (A) but ends inside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `0`: (B) is completely inside of (A) OR (A) is completely inside of (B)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `+1`: (B) begins inside of (A) but ends outside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `+2`: (B) is after (A) and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `42`: FTW state: (B) ends in (A) but starts outside of (A)" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "compareRange", + "name_prefix": "Range.", + "path": "Range.compareRange", + "outFile": "range.html#Range.compareRange" + }, + { + "id": "Range.compareStart", + "type": "class method", + "description": "Checks the row and column points with the row and column points of the calling range.", + "short_description": "Checks the row and column points with the row and column points of the calling range.", + "line": 15108, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range, or if `isStart` is `true`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "compareStart", + "name_prefix": "Range.", + "path": "Range.compareStart", + "outFile": "range.html#Range.compareStart" + }, + { + "id": "Range.contains", + "type": "class method", + "description": "Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if:\n```javascript\n this.start.row <= row <= this.end.row &&\n this.start.column <= column <= this.end.column\n```", + "short_description": "Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if:\n```javascript\n this.start.row <= row <= this.end.row &&\n this.start.column <= column <= this.end.column\n```", + "line": 14837, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row to check for", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column to check for", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "contains", + "name_prefix": "Range.", + "path": "Range.contains", + "outFile": "range.html#Range.contains" + }, + { + "id": "Range.containsRange", + "type": "class method", + "description": "Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range.", + "short_description": "Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range.", + "line": 14922, + "author": [], + "related": "Range.comparePoint", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A range to compare with", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "containsRange", + "name_prefix": "Range.", + "path": "Range.containsRange", + "outFile": "range.html#Range.containsRange" + }, + { + "id": "Range.extend", + "type": "class method", + "description": "Changes the row and column points for the calling range for both the starting and ending points.", + "short_description": "Changes the row and column points for the calling range for both the starting and ending points.", + "line": 15227, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A new row to extend to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A new column to extend to", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "The original range with the new row" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "extend", + "name_prefix": "Range.", + "path": "Range.extend", + "outFile": "range.html#Range.extend" + }, + { + "id": "Range.fromPoints", + "type": "class method", + "description": "Creates and returns a new `Range` based on the row and column of the given parameters.", + "short_description": "Creates and returns a new `Range` based on the row and column of the given parameters.", + "line": 15303, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "start", + "description": "A starting point to use", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "end", + "description": "An ending point to use", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "fromPoints", + "name_prefix": "Range.", + "path": "Range.fromPoints", + "outFile": "range.html#Range.fromPoints" + }, + { + "id": "Range.inside", + "type": "class method", + "description": "Returns `true` if the `row` and `column` are within the given range.", + "short_description": "Returns `true` if the `row` and `column` are within the given range.", + "line": 15006, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "inside", + "name_prefix": "Range.", + "path": "Range.inside", + "outFile": "range.html#Range.inside" + }, + { + "id": "Range.insideEnd", + "type": "class method", + "description": "Returns `true` if the `row` and `column` are within the given range's ending points.", + "short_description": "Returns `true` if the `row` and `column` are within the given range's ending points.", + "line": 15046, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "insideEnd", + "name_prefix": "Range.", + "path": "Range.insideEnd", + "outFile": "range.html#Range.insideEnd" + }, + { + "id": "Range.insideStart", + "type": "class method", + "description": "Returns `true` if the `row` and `column` are within the given range's starting points.", + "short_description": "Returns `true` if the `row` and `column` are within the given range's starting points.", + "line": 15026, + "author": [], + "related": "Range.compare", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "insideStart", + "name_prefix": "Range.", + "path": "Range.insideStart", + "outFile": "range.html#Range.insideStart" + }, + { + "id": "Range.intersects", + "type": "class method", + "description": "Returns `true` if passed in `range` intersects with the one calling this method.", + "short_description": "Returns `true` if passed in `range` intersects with the one calling this method.", + "line": 14934, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A range to compare with", + "types": [ + "Range" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "intersects", + "name_prefix": "Range.", + "path": "Range.intersects", + "outFile": "range.html#Range.intersects" + }, + { + "id": "Range.isEnd", + "type": "class method", + "description": "Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`.", + "short_description": "Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`.", + "line": 14946, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "isEnd", + "name_prefix": "Range.", + "path": "Range.isEnd", + "outFile": "range.html#Range.isEnd" + }, + { + "id": "Range.isEqual", + "type": "class method", + "description": "Returns `true` if and only if the starting row and column, and ending tow and column, are equivalent to those given by `range`.", + "short_description": "Returns `true` if and only if the starting row and column, and ending tow and column, are equivalent to those given by `range`.", + "line": 14810, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "A range to check against", + "types": [ + "Range" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "isEqual", + "name_prefix": "Range.", + "path": "Range.isEqual", + "outFile": "range.html#Range.isEqual" + }, + { + "id": "Range.isMultiLine", + "type": "class method", + "description": "Returns `true` if the range spans across multiple lines.", + "short_description": "Returns `true` if the range spans across multiple lines.", + "line": 15252, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "isMultiLine", + "name_prefix": "Range.", + "path": "Range.isMultiLine", + "outFile": "range.html#Range.isMultiLine" + }, + { + "id": "Range.isStart", + "type": "class method", + "description": "Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`.", + "short_description": "Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`.", + "line": 14958, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to compare with", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to compare with", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "isStart", + "name_prefix": "Range.", + "path": "Range.isStart", + "outFile": "range.html#Range.isStart" + }, + { + "id": "new Range", + "type": "constructor", + "description": "Creates a new `Range` object with the given starting and ending row and column points.", + "short_description": "Creates a new `Range` object with the given starting and ending row and column points.", + "line": 14787, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "startRow", + "description": "The starting row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "startColumn", + "description": "The starting column", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "endRow", + "description": "The ending row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "endColumn", + "description": "The ending column", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "new", + "name_prefix": "Range.", + "path": "Range.new", + "outFile": "range.html#Range.new" + }, + { + "id": "Range.setEnd", + "type": "class method", + "description": "Sets the starting row and column for the range.", + "short_description": "Sets the starting row and column for the range.", + "line": 14988, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to set", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to set", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "setEnd", + "name_prefix": "Range.", + "path": "Range.setEnd", + "outFile": "range.html#Range.setEnd" + }, + { + "id": "Range.setStart", + "type": "class method", + "description": "Sets the starting row and column for the range.", + "short_description": "Sets the starting row and column for the range.", + "line": 14970, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row point to set", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "A column point to set", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "setStart", + "name_prefix": "Range.", + "path": "Range.setStart", + "outFile": "range.html#Range.setStart" + }, + { + "id": "Range.toScreenRange", + "type": "class method", + "description": "Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object.", + "short_description": "Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object.", + "line": 15282, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The `EditSession` to retrieve coordinates from", + "types": [ + "EditSession" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "toScreenRange", + "name_prefix": "Range.", + "path": "Range.toScreenRange", + "outFile": "range.html#Range.toScreenRange" + }, + { + "id": "Range.toString", + "type": "class method", + "description": "Returns a string containing the range's row and column information, given like this:\n```\n [start.row/start.column] -> [end.row/end.column]\n```", + "short_description": "Returns a string containing the range's row and column information, given like this:\n```\n [start.row/start.column] -> [end.row/end.column]\n```", + "line": 14824, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "name": "toString", + "name_prefix": "Range.", + "path": "Range.toString", + "outFile": "range.html#Range.toString" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", + "subclasses": [], + "name": "Range", + "path": "Range", + "outFile": "range.html" + }, + { + "id": "RenderLoop", + "type": "class", + "description": "Batches changes (that force something to be redrawn) in the background.", + "short_description": "Batches changes (that force something to be redrawn) in the background.", + "line": 15431, + "author": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/renderloop.js", + "subclasses": [], + "name": "RenderLoop", + "path": "RenderLoop", + "outFile": "renderloop.html" + }, + { + "id": "ScrollBar", + "type": "class", + "description": "A set of methods for setting and retrieving the editor's scrollbar.", + "short_description": "A set of methods for setting and retrieving the editor's scrollbar.", + "line": 15530, + "author": [], + "aliases": [], + "children": [ + { + "id": "ScrollBar.getWidth", + "type": "class method", + "description": "Returns the width of the scroll bar.", + "short_description": "Returns the width of the scroll bar.", + "line": 15582, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "getWidth", + "name_prefix": "ScrollBar.", + "path": "ScrollBar.getWidth", + "outFile": "scrollbar.html#ScrollBar.getWidth" + }, + { + "id": "new ScrollBar", + "type": "constructor", + "description": "Creates a new `ScrollBar`. `parent` is the owner of the scroll bar.", + "short_description": "Creates a new `ScrollBar`. `parent` is the owner of the scroll bar.", + "line": 15537, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "parent", + "description": "A DOM element", + "types": [ + "DOMElement" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "new", + "name_prefix": "ScrollBar.", + "path": "ScrollBar.new", + "outFile": "scrollbar.html#ScrollBar.new" + }, + { + "id": "ScrollBar.setHeight", + "type": "class method", + "description": "Sets the height of the scroll bar, in pixels.", + "short_description": "Sets the height of the scroll bar, in pixels.", + "line": 15591, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "height", + "description": "The new height", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "setHeight", + "name_prefix": "ScrollBar.", + "path": "ScrollBar.setHeight", + "outFile": "scrollbar.html#ScrollBar.setHeight" + }, + { + "id": "ScrollBar.setInnerHeight", + "type": "class method", + "description": "Sets the inner height of the scroll bar, in pixels.", + "short_description": "Sets the inner height of the scroll bar, in pixels.", + "line": 15602, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "height", + "description": "The new inner height", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "setInnerHeight", + "name_prefix": "ScrollBar.", + "path": "ScrollBar.setInnerHeight", + "outFile": "scrollbar.html#ScrollBar.setInnerHeight" + }, + { + "id": "ScrollBar.setScrollTop", + "type": "class method", + "description": "Sets the scroll top of the scroll bar.", + "short_description": "Sets the scroll top of the scroll bar.", + "line": 15616, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollTop", + "description": "The new scroll top", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "setScrollTop", + "name_prefix": "ScrollBar.", + "path": "ScrollBar.setScrollTop", + "outFile": "scrollbar.html#ScrollBar.setScrollTop" + }, + { + "id": "ScrollBar@scroll", + "type": "event", + "description": "Emitted when the scroll bar, well, scrolls.", + "short_description": "Emitted when the scroll bar, well, scrolls.", + "line": 15570, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "e", + "description": "Contains one property, `\"data\"`, which indicates the current scroll top position", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "name": "scroll", + "name_prefix": "ScrollBar@", + "path": "ScrollBar.event.scroll", + "outFile": "scrollbar.html#ScrollBar.event.scroll" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", + "subclasses": [], + "name": "ScrollBar", + "path": "ScrollBar", + "outFile": "scrollbar.html" + }, + { + "id": "Search", + "type": "class", + "description": "A class designed to handle all sorts of text searches within a [[Document `Document`]].", + "short_description": "A class designed to handle all sorts of text searches within a [[Document `Document`]].", + "line": 15653, + "author": [], + "aliases": [], + "children": [ + { + "id": "Search.find", + "type": "class method", + "description": "Searches for `options.needle`. If found, this method returns the [[Range `Range`]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", + "short_description": "Searches for `options.needle`. If found, this method returns the [[Range `Range`]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", + "line": 15712, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The session to search with", + "types": [ + "EditSession" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "find", + "name_prefix": "Search.", + "path": "Search.find", + "outFile": "search.html#Search.find" + }, + { + "id": "Search.findAll", + "type": "class method", + "description": "Searches for all occurances `options.needle`. If found, this method returns an array of [[Range `Range`s]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", + "short_description": "Searches for all occurances `options.needle`. If found, this method returns an array of [[Range `Range`s]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", + "line": 15738, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The session to search with", + "types": [ + "EditSession" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "findAll", + "name_prefix": "Search.", + "path": "Search.findAll", + "outFile": "search.html#Search.findAll" + }, + { + "id": "Search.getOptions", + "type": "class method", + "description": "[Returns an object containing all the search options.]{: #Search.getOptions}", + "short_description": "[Returns an object containing all the search options.]{: #Search.getOptions}", + "line": 15696, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "getOptions", + "name_prefix": "Search.", + "path": "Search.getOptions", + "outFile": "search.html#Search.getOptions" + }, + { + "id": "new Search", + "type": "constructor", + "description": "Creates a new `Search` object. The following search options are avaliable:\n\n- `needle`: The string or regular expression you're looking for\n- `backwards`: Whether to search backwards from where cursor currently is. Defaults to `false`.\n- `wrap`: Whether to wrap the search back to the beginning when it hits the end. Defaults to `false`.\n- `caseSensitive`: Whether the search ought to be case-sensitive. Defaults to `false`.\n- `wholeWord`: Whether the search matches only on whole words. Defaults to `false`.\n- `range`: The [[Range]] to search within. Set this to `null` for the whole document\n- `regExp`: Whether the search is a regular expression or not. Defaults to `false`.\n- `start`: The starting [[Range]] or cursor position to begin the search\n- `skipCurrent`: Whether or not to include the current line in the search. Default to `false`.", + "short_description": "Creates a new `Search` object. The following search options are avaliable:\n", + "line": 15660, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "new", + "name_prefix": "Search.", + "path": "Search.new", + "outFile": "search.html#Search.new" + }, + { + "id": "Search.replace", + "type": "class method", + "description": "Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`.", + "short_description": "Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`.", + "line": 15801, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "input", + "description": "The text to search in", + "types": [ + "String" + ], + "optional": false + }, + { + "name": "replacement", + "description": "The replacing text\n+ (String): If `options.regExp` is `true`, this function returns `input` with the replacement already made. Otherwise, this function just returns `replacement`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf `options.needle` was not found, this function returns `null`.", + "types": [ + "String" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "replace", + "name_prefix": "Search.", + "path": "Search.replace", + "outFile": "search.html#Search.replace" + }, + { + "id": "Search.set", + "type": "class method", + "description": "Sets the search options via the `options` parameter.", + "short_description": "Sets the search options via the `options` parameter.", + "line": 15683, + "chainable": true, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "options", + "description": "An object containing all the new search properties", + "types": [ + "Object" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Search", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "set", + "name_prefix": "Search.", + "path": "Search.set", + "outFile": "search.html#Search.set" + }, + { + "id": "Search.setOptions", + "type": "class method", + "description": "Sets the search options via the `options` parameter.", + "short_description": "Sets the search options via the `options` parameter.", + "line": 15704, + "author": [], + "related": "Search.set", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "An", + "description": "object containing all the search propertie", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "name": "setOptions", + "name_prefix": "Search.", + "path": "Search.setOptions", + "outFile": "search.html#Search.setOptions" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", + "subclasses": [], + "name": "Search", + "path": "Search", + "outFile": "search.html" + }, + { + "id": "Selection", + "type": "class", + "description": "Contains the cursor position and the text selection of an edit session.\n\nThe row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding.", + "short_description": "Contains the cursor position and the text selection of an edit session.\n", + "line": 15839, + "author": [], + "aliases": [], + "children": [ + { + "id": "Selection.clearSelection", + "type": "class method", + "description": "[Empties the selection (by de-selecting it). This function also emits the `'changeSelection'` event.]{: #Selection.clearSelection}", + "short_description": "[Empties the selection (by de-selecting it). This function also emits the `'changeSelection'` event.]{: #Selection.clearSelection}", + "line": 16023, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "clearSelection", + "name_prefix": "Selection.", + "path": "Selection.clearSelection", + "outFile": "selection.html#Selection.clearSelection" + }, + { + "id": "Selection.getCursor", + "type": "class method", + "description": "Gets the current position of the cursor.", + "short_description": "Gets the current position of the cursor.", + "line": 15922, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "getCursor", + "name_prefix": "Selection.", + "path": "Selection.getCursor", + "outFile": "selection.html#Selection.getCursor" + }, + { + "id": "Selection.getRange", + "type": "class method", + "description": "[Returns the [[Range]] for the selected text.]{: #Selection.getRange}", + "short_description": "[Returns the [[Range]] for the selected text.]{: #Selection.getRange}", + "line": 16004, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Range", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "getRange", + "name_prefix": "Selection.", + "path": "Selection.getRange", + "outFile": "selection.html#Selection.getRange" + }, + { + "id": "Selection.getSelectionAnchor", + "type": "class method", + "description": "Returns an object containing the `row` and `column` of the calling selection anchor.", + "short_description": "Returns an object containing the `row` and `column` of the calling selection anchor.", + "line": 15946, + "author": [], + "related": "Anchor.getPosition", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "getSelectionAnchor", + "name_prefix": "Selection.", + "path": "Selection.getSelectionAnchor", + "outFile": "selection.html#Selection.getSelectionAnchor" + }, + { + "id": "Selection.getSelectionLead", + "type": "class method", + "description": "Returns an object containing the `row` and `column` of the calling selection lead.", + "short_description": "Returns an object containing the `row` and `column` of the calling selection lead.", + "line": 15957, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "getSelectionLead", + "name_prefix": "Selection.", + "path": "Selection.getSelectionLead", + "outFile": "selection.html#Selection.getSelectionLead" + }, + { + "id": "Selection.getWordRange", + "type": "class method", + "description": "Moves the selection to highlight the entire word.", + "short_description": "Moves the selection to highlight the entire word.", + "line": 16178, + "author": [], + "related": "EditSession.getWordRange", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "column", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "getWordRange", + "name_prefix": "Selection.", + "path": "Selection.getWordRange", + "outFile": "selection.html#Selection.getWordRange" + }, + { + "id": "Selection.isBackwards", + "type": "class method", + "description": "Returns `true` if the selection is going backwards in the document.", + "short_description": "Returns `true` if the selection is going backwards in the document.", + "line": 15994, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "isBackwards", + "name_prefix": "Selection.", + "path": "Selection.isBackwards", + "outFile": "selection.html#Selection.isBackwards" + }, + { + "id": "Selection.isEmpty", + "type": "class method", + "description": "Returns `true` if the selection is empty.", + "short_description": "Returns `true` if the selection is empty.", + "line": 15898, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "isEmpty", + "name_prefix": "Selection.", + "path": "Selection.isEmpty", + "outFile": "selection.html#Selection.isEmpty" + }, + { + "id": "Selection.isMultiLine", + "type": "class method", + "description": "Returns `true` if the selection is a multi-line.", + "short_description": "Returns `true` if the selection is a multi-line.", + "line": 15910, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "isMultiLine", + "name_prefix": "Selection.", + "path": "Selection.isMultiLine", + "outFile": "selection.html#Selection.isMultiLine" + }, + { + "id": "Selection.moveCursorBy", + "type": "class method", + "description": "Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.", + "short_description": "Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.", + "line": 16567, + "author": [], + "related": "EditSession.documentToScreenPosition", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "rows", + "description": "The number of rows to move by", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "chars", + "description": "The number of characters to move by", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorBy", + "name_prefix": "Selection.", + "path": "Selection.moveCursorBy", + "outFile": "selection.html#Selection.moveCursorBy" + }, + { + "id": "Selection.moveCursorDown", + "type": "class method", + "description": "Moves the cursor down one row.", + "short_description": "Moves the cursor down one row.", + "line": 16241, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorDown", + "name_prefix": "Selection.", + "path": "Selection.moveCursorDown", + "outFile": "selection.html#Selection.moveCursorDown" + }, + { + "id": "Selection.moveCursorFileEnd", + "type": "class method", + "description": "Moves the cursor to the end of the file.", + "short_description": "Moves the cursor to the end of the file.", + "line": 16350, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorFileEnd", + "name_prefix": "Selection.", + "path": "Selection.moveCursorFileEnd", + "outFile": "selection.html#Selection.moveCursorFileEnd" + }, + { + "id": "Selection.moveCursorFileStart", + "type": "class method", + "description": "Moves the cursor to the start of the file.", + "short_description": "Moves the cursor to the start of the file.", + "line": 16360, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorFileStart", + "name_prefix": "Selection.", + "path": "Selection.moveCursorFileStart", + "outFile": "selection.html#Selection.moveCursorFileStart" + }, + { + "id": "Selection.moveCursorLeft", + "type": "class method", + "description": "Moves the cursor left one column.", + "short_description": "Moves the cursor left one column.", + "line": 16249, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorLeft", + "name_prefix": "Selection.", + "path": "Selection.moveCursorLeft", + "outFile": "selection.html#Selection.moveCursorLeft" + }, + { + "id": "Selection.moveCursorLineEnd", + "type": "class method", + "description": "Moves the cursor to the end of the line.", + "short_description": "Moves the cursor to the end of the line.", + "line": 16331, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorLineEnd", + "name_prefix": "Selection.", + "path": "Selection.moveCursorLineEnd", + "outFile": "selection.html#Selection.moveCursorLineEnd" + }, + { + "id": "Selection.moveCursorLineStart", + "type": "class method", + "description": "Moves the cursor to the start of the line.", + "short_description": "Moves the cursor to the start of the line.", + "line": 16299, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorLineStart", + "name_prefix": "Selection.", + "path": "Selection.moveCursorLineStart", + "outFile": "selection.html#Selection.moveCursorLineStart" + }, + { + "id": "Selection.moveCursorLongWordLeft", + "type": "class method", + "description": "Moves the cursor to the word on the left.", + "short_description": "Moves the cursor to the word on the left.", + "line": 16414, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorLongWordLeft", + "name_prefix": "Selection.", + "path": "Selection.moveCursorLongWordLeft", + "outFile": "selection.html#Selection.moveCursorLongWordLeft" + }, + { + "id": "Selection.moveCursorLongWordRight", + "type": "class method", + "description": "Moves the cursor to the word on the right.", + "short_description": "Moves the cursor to the word on the right.", + "line": 16368, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorLongWordRight", + "name_prefix": "Selection.", + "path": "Selection.moveCursorLongWordRight", + "outFile": "selection.html#Selection.moveCursorLongWordRight" + }, + { + "id": "Selection.moveCursorRight", + "type": "class method", + "description": "Moves the cursor right one column.", + "short_description": "Moves the cursor right one column.", + "line": 16274, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorRight", + "name_prefix": "Selection.", + "path": "Selection.moveCursorRight", + "outFile": "selection.html#Selection.moveCursorRight" + }, + { + "id": "Selection.moveCursorTo", + "type": "class method", + "description": "Moves the cursor to the row and column provided. [If `preventUpdateDesiredColumn` is `true`, then the cursor stays in the same column position as its original point.]{: #preventUpdateBoolDesc}", + "short_description": "Moves the cursor to the row and column provided. [If `preventUpdateDesiredColumn` is `true`, then the cursor stays in the same column position as its original point.]{: #preventUpdateBoolDesc}", + "line": 16604, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to move to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column to move to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "keepDesiredColumn", + "description": "[If `true`, the cursor move does not respect the previous column]{: #preventUpdateBool}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorTo", + "name_prefix": "Selection.", + "path": "Selection.moveCursorTo", + "outFile": "selection.html#Selection.moveCursorTo" + }, + { + "id": "Selection.moveCursorToPosition", + "type": "class method", + "description": "Moves the selection to the position indicated by its `row` and `column`.", + "short_description": "Moves the selection to the position indicated by its `row` and `column`.", + "line": 16594, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "The position to move to", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorToPosition", + "name_prefix": "Selection.", + "path": "Selection.moveCursorToPosition", + "outFile": "selection.html#Selection.moveCursorToPosition" + }, + { + "id": "Selection.moveCursorToScreen", + "type": "class method", + "description": "Moves the cursor to the screen position indicated by row and column. {:preventUpdateBoolDesc}", + "short_description": "Moves the cursor to the screen position indicated by row and column. {:preventUpdateBoolDesc}", + "line": 16628, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to move to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column to move to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "keepDesiredColumn", + "description": "{:preventUpdateBool}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorToScreen", + "name_prefix": "Selection.", + "path": "Selection.moveCursorToScreen", + "outFile": "selection.html#Selection.moveCursorToScreen" + }, + { + "id": "Selection.moveCursorUp", + "type": "class method", + "description": "Moves the cursor up one row.", + "short_description": "Moves the cursor up one row.", + "line": 16233, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "moveCursorUp", + "name_prefix": "Selection.", + "path": "Selection.moveCursorUp", + "outFile": "selection.html#Selection.moveCursorUp" + }, + { + "id": "new Selection", + "type": "constructor", + "description": "Creates a new `Selection` object.", + "short_description": "Creates a new `Selection` object.", + "line": 15863, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The session to use", + "types": [ + "EditSession" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "new", + "name_prefix": "Selection.", + "path": "Selection.new", + "outFile": "selection.html#Selection.new" + }, + { + "id": "Selection.selectAll", + "type": "class method", + "description": "Selects all the text in the document.", + "short_description": "Selects all the text in the document.", + "line": 16033, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectAll", + "name_prefix": "Selection.", + "path": "Selection.selectAll", + "outFile": "selection.html#Selection.selectAll" + }, + { + "id": "Selection.selectAWord", + "type": "class method", + "description": "Selects a word, including its right whitespace.", + "short_description": "Selects a word, including its right whitespace.", + "line": 16199, + "author": [], + "related": "EditSession.getAWordRange", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectAWord", + "name_prefix": "Selection.", + "path": "Selection.selectAWord", + "outFile": "selection.html#Selection.selectAWord" + }, + { + "id": "Selection.selectDown", + "type": "class method", + "description": "Moves the selection down one row.", + "short_description": "Moves the selection down one row.", + "line": 16105, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectDown", + "name_prefix": "Selection.", + "path": "Selection.selectDown", + "outFile": "selection.html#Selection.selectDown" + }, + { + "id": "Selection.selectFileEnd", + "type": "class method", + "description": "Moves the selection to the end of the file.", + "short_description": "Moves the selection to the end of the file.", + "line": 16146, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectFileEnd", + "name_prefix": "Selection.", + "path": "Selection.selectFileEnd", + "outFile": "selection.html#Selection.selectFileEnd" + }, + { + "id": "Selection.selectFileStart", + "type": "class method", + "description": "Moves the selection to the start of the file.", + "short_description": "Moves the selection to the start of the file.", + "line": 16154, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectFileStart", + "name_prefix": "Selection.", + "path": "Selection.selectFileStart", + "outFile": "selection.html#Selection.selectFileStart" + }, + { + "id": "Selection.selectLeft", + "type": "class method", + "description": "Moves the selection left one column.", + "short_description": "Moves the selection left one column.", + "line": 16122, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectLeft", + "name_prefix": "Selection.", + "path": "Selection.selectLeft", + "outFile": "selection.html#Selection.selectLeft" + }, + { + "id": "Selection.selectLine", + "type": "class method", + "description": "Selects the entire line.", + "short_description": "Selects the entire line.", + "line": 16226, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectLine", + "name_prefix": "Selection.", + "path": "Selection.selectLine", + "outFile": "selection.html#Selection.selectLine" + }, + { + "id": "Selection.selectLineEnd", + "type": "class method", + "description": "Moves the selection to the end of the current line.", + "short_description": "Moves the selection to the end of the current line.", + "line": 16138, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectLineEnd", + "name_prefix": "Selection.", + "path": "Selection.selectLineEnd", + "outFile": "selection.html#Selection.selectLineEnd" + }, + { + "id": "Selection.selectLineStart", + "type": "class method", + "description": "Moves the selection to the beginning of the current line.", + "short_description": "Moves the selection to the beginning of the current line.", + "line": 16130, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectLineStart", + "name_prefix": "Selection.", + "path": "Selection.selectLineStart", + "outFile": "selection.html#Selection.selectLineStart" + }, + { + "id": "Selection.selectRight", + "type": "class method", + "description": "Moves the selection right one column.", + "short_description": "Moves the selection right one column.", + "line": 16113, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectRight", + "name_prefix": "Selection.", + "path": "Selection.selectRight", + "outFile": "selection.html#Selection.selectRight" + }, + { + "id": "Selection.selectTo", + "type": "class method", + "description": "Moves the selection cursor to the indicated row and column.", + "short_description": "Moves the selection cursor to the indicated row and column.", + "line": 16070, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The row to select to", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The column to select to", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectTo", + "name_prefix": "Selection.", + "path": "Selection.selectTo", + "outFile": "selection.html#Selection.selectTo" + }, + { + "id": "Selection.selectToPosition", + "type": "class method", + "description": "Moves the selection cursor to the row and column indicated by `pos`.", + "short_description": "Moves the selection cursor to the row and column indicated by `pos`.", + "line": 16084, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "pos", + "description": "An object containing the row and column", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectToPosition", + "name_prefix": "Selection.", + "path": "Selection.selectToPosition", + "outFile": "selection.html#Selection.selectToPosition" + }, + { + "id": "Selection.selectUp", + "type": "class method", + "description": "Moves the selection up one row.", + "short_description": "Moves the selection up one row.", + "line": 16097, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectUp", + "name_prefix": "Selection.", + "path": "Selection.selectUp", + "outFile": "selection.html#Selection.selectUp" + }, + { + "id": "Selection.selectWord", + "type": "class method", + "description": "Selects an entire word boundary.", + "short_description": "Selects an entire word boundary.", + "line": 16191, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectWord", + "name_prefix": "Selection.", + "path": "Selection.selectWord", + "outFile": "selection.html#Selection.selectWord" + }, + { + "id": "Selection.selectWordLeft", + "type": "class method", + "description": "Moves the selection to the first word on the left.", + "short_description": "Moves the selection to the first word on the left.", + "line": 16170, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectWordLeft", + "name_prefix": "Selection.", + "path": "Selection.selectWordLeft", + "outFile": "selection.html#Selection.selectWordLeft" + }, + { + "id": "Selection.selectWordRight", + "type": "class method", + "description": "Moves the selection to the first word on the right.", + "short_description": "Moves the selection to the first word on the right.", + "line": 16162, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "selectWordRight", + "name_prefix": "Selection.", + "path": "Selection.selectWordRight", + "outFile": "selection.html#Selection.selectWordRight" + }, + { + "id": "Selection.setSelectionAnchor", + "type": "class method", + "description": "Sets the row and column position of the anchor. This function also emits the `'changeSelection'` event.", + "short_description": "Sets the row and column position of the anchor. This function also emits the `'changeSelection'` event.", + "line": 15930, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The new row", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The new column", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "setSelectionAnchor", + "name_prefix": "Selection.", + "path": "Selection.setSelectionAnchor", + "outFile": "selection.html#Selection.setSelectionAnchor" + }, + { + "id": "Selection.setSelectionRange", + "type": "class method", + "description": "Sets the selection to the provided range.", + "short_description": "Sets the selection to the provided range.", + "line": 16042, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "The range of text to select", + "types": [ + "Range" + ], + "optional": false + }, + { + "name": "reverse", + "description": "Indicates if the range should go backwards (`true`) or not", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "setSelectionRange", + "name_prefix": "Selection.", + "path": "Selection.setSelectionRange", + "outFile": "selection.html#Selection.setSelectionRange" + }, + { + "id": "Selection.shiftSelection", + "type": "class method", + "description": "Shifts the selection up (or down, if [[Selection.isBackwards `isBackwards()`]] is true) the given number of columns.", + "short_description": "Shifts the selection up (or down, if [[Selection.isBackwards `isBackwards()`]] is true) the given number of columns.", + "line": 15966, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "columns", + "description": "The number of columns to shift by", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "shiftSelection", + "name_prefix": "Selection.", + "path": "Selection.shiftSelection", + "outFile": "selection.html#Selection.shiftSelection" + }, + { + "id": "Selection@changeCursor", + "type": "event", + "description": "Emitted when the cursor position changes.", + "short_description": "Emitted when the cursor position changes.", + "line": 15849, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "changeCursor", + "name_prefix": "Selection@", + "path": "Selection.event.changeCursor", + "outFile": "selection.html#Selection.event.changeCursor" + }, + { + "id": "Selection@changeSelection", + "type": "event", + "description": "Emitted when the cursor selection changes.", + "short_description": "Emitted when the cursor selection changes.", + "line": 15856, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "cancelable": [], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "name": "changeSelection", + "name_prefix": "Selection@", + "path": "Selection.event.changeSelection", + "outFile": "selection.html#Selection.event.changeSelection" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", + "subclasses": [], + "name": "Selection", + "path": "Selection", + "outFile": "selection.html" + }, + { + "id": "Split", + "type": "class", + "incomplete": true, + "line": 16682, + "author": [], + "aliases": [], + "children": [ + { + "id": "Split.blur", + "type": "class method", + "description": "Blurs the current editor.", + "short_description": "Blurs the current editor.", + "line": 16795, + "author": [], + "related": "Editor.blur", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "blur", + "name_prefix": "Split.", + "path": "Split.blur", + "outFile": "split.html#Split.blur" + }, + { + "id": "Split.focus", + "type": "class method", + "description": "Focuses the current editor.", + "short_description": "Focuses the current editor.", + "line": 16787, + "author": [], + "related": "Editor.focus", + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "focus", + "name_prefix": "Split.", + "path": "Split.focus", + "outFile": "split.html#Split.focus" + }, + { + "id": "Split.forEach", + "type": "class method", + "incomplete": true, + "line": 16829, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "callback", + "description": "A callback function to execute", + "types": [ + "Function" + ], + "optional": false + }, + { + "name": "scope", + "description": "The default scope for the callback\n\nExecutes `callback` on all of the available editors.", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "forEach", + "name_prefix": "Split.", + "path": "Split.forEach", + "outFile": "split.html#Split.forEach" + }, + { + "id": "Split.getCurrentEditor", + "type": "class method", + "description": "Returns the current editor.", + "short_description": "Returns the current editor.", + "line": 16778, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Editor", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "getCurrentEditor", + "name_prefix": "Split.", + "path": "Split.getCurrentEditor", + "outFile": "split.html#Split.getCurrentEditor" + }, + { + "id": "Split.getEditor", + "type": "class method", + "incomplete": true, + "line": 16768, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "idx", + "description": "The index of the editor you want\n\nReturns the editor identified by the index `idx`.", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "getEditor", + "name_prefix": "Split.", + "path": "Split.getEditor", + "outFile": "split.html#Split.getEditor" + }, + { + "id": "Split.getOrientation", + "type": "class method", + "description": "Returns the orientation.", + "short_description": "Returns the orientation.", + "line": 16917, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "getOrientation", + "name_prefix": "Split.", + "path": "Split.getOrientation", + "outFile": "split.html#Split.getOrientation" + }, + { + "id": "Split.getSplits", + "type": "class method", + "description": "Returns the number of splits.", + "short_description": "Returns the number of splits.", + "line": 16759, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "getSplits", + "name_prefix": "Split.", + "path": "Split.getSplits", + "outFile": "split.html#Split.getSplits" + }, + { + "id": "Split.resize", + "type": "class method", + "description": "Split.resize() -> Void\n\n\nResizes the editor.", + "short_description": "Split.resize() -> Void\n", + "line": 16941, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "resize", + "name_prefix": "Split.", + "path": "Split.resize", + "outFile": "split.html#Split.resize" + }, + { + "id": "Split.setFontSize", + "type": "class method", + "incomplete": true, + "line": 16843, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "size", + "description": "The new font size\n\nSets the font size, in pixels, for all the available editors.", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "setFontSize", + "name_prefix": "Split.", + "path": "Split.setFontSize", + "outFile": "split.html#Split.setFontSize" + }, + { + "id": "Split.setKeyboardHandler", + "type": "class method", + "incomplete": true, + "line": 16816, + "author": [], + "related": "editor.setKeyboardHandler", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "keybinding", + "description": "Sets the keyboard handler for the editor.", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "setKeyboardHandler", + "name_prefix": "Split.", + "path": "Split.setKeyboardHandler", + "outFile": "split.html#Split.setKeyboardHandler" + }, + { + "id": "Split.setOrientation", + "type": "class method", + "incomplete": true, + "line": 16926, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "orientation", + "description": "The new orientation value\n\nSets the orientation.", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "setOrientation", + "name_prefix": "Split.", + "path": "Split.setOrientation", + "outFile": "split.html#Split.setOrientation" + }, + { + "id": "Split.setSession", + "type": "class method", + "incomplete": true, + "line": 16883, + "author": [], + "related": "Editor.setSession", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The new edit session", + "types": [ + "EditSession" + ], + "optional": false + }, + { + "name": "idx", + "description": "The editor's index you're interested in\n\nSets a new [[EditSession `EditSession`]] for the indicated editor.", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "setSession", + "name_prefix": "Split.", + "path": "Split.setSession", + "outFile": "split.html#Split.setSession" + }, + { + "id": "Split.setTheme", + "type": "class method", + "incomplete": true, + "line": 16803, + "author": [], + "related": "Editor.setTheme", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "theme", + "description": "The name of the theme to set\n\nSets a theme for each of the available editors.", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "name": "setTheme", + "name_prefix": "Split.", + "path": "Split.setTheme", + "outFile": "split.html#Split.setTheme" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", + "subclasses": [], + "name": "Split", + "path": "Split", + "outFile": "split.html" + }, + { + "id": "TokenIterator", + "type": "class", + "description": "This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.", + "short_description": "This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.", + "line": 16974, + "author": [], + "aliases": [], + "children": [ + { + "id": "TokenIterator.getCurrentToken", + "type": "class method", + "description": "Returns the current tokenized string.", + "short_description": "Returns the current tokenized string.", + "line": 17045, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "getCurrentToken", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.getCurrentToken", + "outFile": "token_iterator.html#TokenIterator.getCurrentToken" + }, + { + "id": "TokenIterator.getCurrentTokenColumn", + "type": "class method", + "description": "Returns the current column.", + "short_description": "Returns the current column.", + "line": 17063, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "getCurrentTokenColumn", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.getCurrentTokenColumn", + "outFile": "token_iterator.html#TokenIterator.getCurrentTokenColumn" + }, + { + "id": "TokenIterator.getCurrentTokenRow", + "type": "class method", + "description": "Returns the current row.", + "short_description": "Returns the current row.", + "line": 17054, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "getCurrentTokenRow", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.getCurrentTokenRow", + "outFile": "token_iterator.html#TokenIterator.getCurrentTokenRow" + }, + { + "id": "new TokenIterator", + "type": "constructor", + "description": "Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.", + "short_description": "Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.", + "line": 16981, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "The session to associate with", + "types": [ + "EditSession" + ], + "optional": false + }, + { + "name": "initialRow", + "description": "The row to start the tokenizing at", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "initialColumn", + "description": "The column to start the tokenizing at", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "new", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.new", + "outFile": "token_iterator.html#TokenIterator.new" + }, + { + "id": "TokenIterator.stepBackward", + "type": "class method", + "description": "Tokenizes all the items from the current point to the row prior in the document.", + "short_description": "Tokenizes all the items from the current point to the row prior in the document.", + "line": 17000, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "stepBackward", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.stepBackward", + "outFile": "token_iterator.html#TokenIterator.stepBackward" + }, + { + "id": "TokenIterator.stepForward", + "type": "class method", + "description": "Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns `null`. Otherwise, it returns the tokenized string.", + "short_description": "Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns `null`. Otherwise, it returns the tokenized string.", + "line": 17022, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "name": "stepForward", + "name_prefix": "TokenIterator.", + "path": "TokenIterator.stepForward", + "outFile": "token_iterator.html#TokenIterator.stepForward" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", + "subclasses": [], + "name": "TokenIterator", + "path": "TokenIterator", + "outFile": "token_iterator.html" + }, + { + "id": "Tokenizer", + "type": "class", + "description": "This class takes a set of highlighting rules, and creates a tokenizer out of them. For more information, see [the wiki on extending highlighters](https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#wiki-extendingTheHighlighter).", + "short_description": "This class takes a set of highlighting rules, and creates a tokenizer out of them. For more information, see [the wiki on extending highlighters](https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#wiki-extendingTheHighlighter).", + "line": 17105, + "author": [], + "aliases": [], + "children": [ + { + "id": "Tokenizer.getLineTokens", + "type": "class method", + "description": "Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state.", + "short_description": "Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state.", + "line": 17167, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "line", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "startState", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", + "name": "getLineTokens", + "name_prefix": "Tokenizer.", + "path": "Tokenizer.getLineTokens", + "outFile": "tokenizer.html#Tokenizer.getLineTokens" + }, + { + "id": "new Tokenizer", + "type": "constructor", + "description": "Constructs a new tokenizer based on the given rules and flags.", + "short_description": "Constructs a new tokenizer based on the given rules and flags.", + "line": 17112, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "rules", + "description": "The highlighting rules", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "flag", + "description": "Any additional regular expression flags to pass (like \"i\" for case insensitive)", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", + "name": "new", + "name_prefix": "Tokenizer.", + "path": "Tokenizer.new", + "outFile": "tokenizer.html#Tokenizer.new" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", + "subclasses": [], + "name": "Tokenizer", + "path": "Tokenizer", + "outFile": "tokenizer.html" + }, + { + "id": "UndoManager", + "type": "class", + "description": "This object maintains the undo stack for an [[EditSession `EditSession`]].", + "short_description": "This object maintains the undo stack for an [[EditSession `EditSession`]].", + "line": 17363, + "author": [], + "aliases": [], + "children": [ + { + "id": "UndoManager.execute", + "type": "class method", + "description": "Provides a means for implementing your own undo manager. `options` has one property, `args`, an [[Array `Array`]], with two elements:\n\n- `args[0]` is an array of deltas\n- `args[1]` is the document to associate with", + "short_description": "Provides a means for implementing your own undo manager. `options` has one property, `args`, an [[Array `Array`]], with two elements:\n", + "line": 17383, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "options", + "description": "Contains additional properties", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "execute", + "name_prefix": "UndoManager.", + "path": "UndoManager.execute", + "outFile": "undomanager.html#UndoManager.execute" + }, + { + "id": "UndoManager.hasRedo", + "type": "class method", + "description": "Returns `true` if there are redo operations left to perform.", + "short_description": "Returns `true` if there are redo operations left to perform.", + "line": 17452, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "hasRedo", + "name_prefix": "UndoManager.", + "path": "UndoManager.hasRedo", + "outFile": "undomanager.html#UndoManager.hasRedo" + }, + { + "id": "UndoManager.hasUndo", + "type": "class method", + "description": "Returns `true` if there are undo operations left to perform.", + "short_description": "Returns `true` if there are undo operations left to perform.", + "line": 17443, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "hasUndo", + "name_prefix": "UndoManager.", + "path": "UndoManager.hasUndo", + "outFile": "undomanager.html#UndoManager.hasUndo" + }, + { + "id": "new UndoManager", + "type": "constructor", + "description": "Resets the current undo state and creates a new `UndoManager`.", + "short_description": "Resets the current undo state and creates a new `UndoManager`.", + "line": 17370, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "new", + "name_prefix": "UndoManager.", + "path": "UndoManager.new", + "outFile": "undomanager.html#UndoManager.new" + }, + { + "id": "UndoManager.redo", + "type": "class method", + "description": "[Perform a redo operation on the document, reimplementing the last change.]{: #UndoManager.redo}", + "short_description": "[Perform a redo operation on the document, reimplementing the last change.]{: #UndoManager.redo}", + "line": 17417, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dontSelect", + "description": "{:dontSelect}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "redo", + "name_prefix": "UndoManager.", + "path": "UndoManager.redo", + "outFile": "undomanager.html#UndoManager.redo" + }, + { + "id": "UndoManager.reset", + "type": "class method", + "description": "Destroys the stack of undo and redo redo operations.", + "short_description": "Destroys the stack of undo and redo redo operations.", + "line": 17434, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "reset", + "name_prefix": "UndoManager.", + "path": "UndoManager.reset", + "outFile": "undomanager.html#UndoManager.reset" + }, + { + "id": "UndoManager.undo", + "type": "class method", + "description": "[Perform an undo operation on the document, reverting the last change.]{: #UndoManager.undo}", + "short_description": "[Perform an undo operation on the document, reverting the last change.]{: #UndoManager.undo}", + "line": 17399, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dontSelect", + "description": "{:dontSelect}", + "types": [ + "Boolean" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Range", + "description": "The range of the undo." + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "name": "undo", + "name_prefix": "UndoManager.", + "path": "UndoManager.undo", + "outFile": "undomanager.html#UndoManager.undo" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", + "subclasses": [], + "name": "UndoManager", + "path": "UndoManager", + "outFile": "undomanager.html" + }, + { + "id": "VirtualRenderer", + "type": "class", + "description": "The class that is responsible for drawing everything you see on the screen!", + "short_description": "The class that is responsible for drawing everything you see on the screen!", + "line": 17556, + "author": [], + "aliases": [], + "children": [ + { + "id": "VirtualRenderer.addGutterDecoration", + "type": "class method", + "description": "Deprecated; (moved to [[EditSession]])", + "short_description": "Deprecated; (moved to [[EditSession]])", + "line": 18386, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "className", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "addGutterDecoration", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.addGutterDecoration", + "outFile": "virtual_renderer.html#VirtualRenderer.addGutterDecoration" + }, + { + "id": "VirtualRenderer.adjustWrapLimit", + "type": "class method", + "description": "Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.", + "short_description": "Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.", + "line": 17845, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "adjustWrapLimit", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.adjustWrapLimit", + "outFile": "virtual_renderer.html#VirtualRenderer.adjustWrapLimit" + }, + { + "id": "VirtualRenderer.destroy", + "type": "class method", + "description": "Destroys the text and cursor layers for this renderer.", + "short_description": "Destroys the text and cursor layers for this renderer.", + "line": 18874, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "destroy", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.destroy", + "outFile": "virtual_renderer.html#VirtualRenderer.destroy" + }, + { + "id": "VirtualRenderer.getAnimatedScroll", + "type": "class method", + "description": "Returns whether an animated scroll happens or not.", + "short_description": "Returns whether an animated scroll happens or not.", + "line": 17866, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getAnimatedScroll", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getAnimatedScroll", + "outFile": "virtual_renderer.html#VirtualRenderer.getAnimatedScroll" + }, + { + "id": "VirtualRenderer.getContainerElement", + "type": "class method", + "description": "Returns the root element containing this renderer.", + "short_description": "Returns the root element containing this renderer.", + "line": 18032, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "DOMElement", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getContainerElement", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getContainerElement", + "outFile": "virtual_renderer.html#VirtualRenderer.getContainerElement" + }, + { + "id": "VirtualRenderer.getFirstFullyVisibleRow", + "type": "class method", + "description": "Returns the index of the first fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", + "short_description": "Returns the index of the first fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", + "line": 18097, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getFirstFullyVisibleRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getFirstFullyVisibleRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getFirstFullyVisibleRow" + }, + { + "id": "VirtualRenderer.getFirstVisibleRow", + "type": "class method", + "description": "[Returns the index of the first visible row.]{: #VirtualRenderer.getFirstVisibleRow}", + "short_description": "[Returns the index of the first visible row.]{: #VirtualRenderer.getFirstVisibleRow}", + "line": 18088, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getFirstVisibleRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getFirstVisibleRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getFirstVisibleRow" + }, + { + "id": "VirtualRenderer.getHScrollBarAlwaysVisible", + "type": "class method", + "description": "Returns whether the horizontal scrollbar is set to be always visible.", + "short_description": "Returns whether the horizontal scrollbar is set to be always visible.", + "line": 18144, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getHScrollBarAlwaysVisible", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getHScrollBarAlwaysVisible", + "outFile": "virtual_renderer.html#VirtualRenderer.getHScrollBarAlwaysVisible" + }, + { + "id": "VirtualRenderer.getLastFullyVisibleRow", + "type": "class method", + "description": "Returns the index of the last fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", + "short_description": "Returns the index of the last fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", + "line": 18106, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getLastFullyVisibleRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getLastFullyVisibleRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getLastFullyVisibleRow" + }, + { + "id": "VirtualRenderer.getLastVisibleRow", + "type": "class method", + "description": "[Returns the index of the last visible row.]{: #VirtualRenderer.getLastVisibleRow}", + "short_description": "[Returns the index of the last visible row.]{: #VirtualRenderer.getLastVisibleRow}", + "line": 18116, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getLastVisibleRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getLastVisibleRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getLastVisibleRow" + }, + { + "id": "VirtualRenderer.getMouseEventTarget", + "type": "class method", + "description": "Returns the element that the mouse events are attached to", + "short_description": "Returns the element that the mouse events are attached to", + "line": 18041, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "DOMElement", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getMouseEventTarget", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getMouseEventTarget", + "outFile": "virtual_renderer.html#VirtualRenderer.getMouseEventTarget" + }, + { + "id": "VirtualRenderer.getPrintMarginColumn", + "type": "class method", + "description": "Returns whether the print margin column is being shown or not.", + "short_description": "Returns whether the print margin column is being shown or not.", + "line": 17941, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getPrintMarginColumn", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getPrintMarginColumn", + "outFile": "virtual_renderer.html#VirtualRenderer.getPrintMarginColumn" + }, + { + "id": "VirtualRenderer.getScrollBottomRow", + "type": "class method", + "description": "Returns the last visible row, regardless of whether it's fully visible or not.", + "short_description": "Returns the last visible row, regardless of whether it's fully visible or not.", + "line": 18515, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getScrollBottomRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getScrollBottomRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getScrollBottomRow" + }, + { + "id": "VirtualRenderer.getScrollLeft", + "type": "class method", + "description": "{:EditSession.getScrollLeft}", + "short_description": "{:EditSession.getScrollLeft}", + "line": 18497, + "author": [], + "related": "EditSession.getScrollLeft", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getScrollLeft", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getScrollLeft", + "outFile": "virtual_renderer.html#VirtualRenderer.getScrollLeft" + }, + { + "id": "VirtualRenderer.getScrollTop", + "type": "class method", + "description": "{:EditSession.getScrollTop}", + "short_description": "{:EditSession.getScrollTop}", + "line": 18488, + "author": [], + "related": "EditSession.getScrollTop", + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getScrollTop", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getScrollTop", + "outFile": "virtual_renderer.html#VirtualRenderer.getScrollTop" + }, + { + "id": "VirtualRenderer.getScrollTopRow", + "type": "class method", + "description": "Returns the first visible row, regardless of whether it's fully visible or not.", + "short_description": "Returns the first visible row, regardless of whether it's fully visible or not.", + "line": 18506, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getScrollTopRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getScrollTopRow", + "outFile": "virtual_renderer.html#VirtualRenderer.getScrollTopRow" + }, + { + "id": "VirtualRenderer.getShowGutter", + "type": "class method", + "description": "Returns `true` if the gutter is being shown.", + "short_description": "Returns `true` if the gutter is being shown.", + "line": 17950, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getShowGutter", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getShowGutter", + "outFile": "virtual_renderer.html#VirtualRenderer.getShowGutter" + }, + { + "id": "VirtualRenderer.getShowInvisibles", + "type": "class method", + "description": "Returns whether invisible characters are being shown or not.", + "short_description": "Returns whether invisible characters are being shown or not.", + "line": 17887, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getShowInvisibles", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getShowInvisibles", + "outFile": "virtual_renderer.html#VirtualRenderer.getShowInvisibles" + }, + { + "id": "VirtualRenderer.getShowPrintMargin", + "type": "class method", + "description": "Returns whether the print margin is being shown or not.", + "short_description": "Returns whether the print margin is being shown or not.", + "line": 17919, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getShowPrintMargin", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getShowPrintMargin", + "outFile": "virtual_renderer.html#VirtualRenderer.getShowPrintMargin" + }, + { + "id": "VirtualRenderer.getTextAreaContainer", + "type": "class method", + "description": "Returns the element to which the hidden text area is added.", + "short_description": "Returns the element to which the hidden text area is added.", + "line": 18050, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "DOMElement", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getTextAreaContainer", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getTextAreaContainer", + "outFile": "virtual_renderer.html#VirtualRenderer.getTextAreaContainer" + }, + { + "id": "VirtualRenderer.getTheme", + "type": "class method", + "description": "[Returns the path of the current theme.]{: #VirtualRenderer.getTheme}", + "short_description": "[Returns the path of the current theme.]{: #VirtualRenderer.getTheme}", + "line": 18842, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + }, + "returns": [ + { + "type": "String", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "getTheme", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.getTheme", + "outFile": "virtual_renderer.html#VirtualRenderer.getTheme" + }, + { + "id": "VirtualRenderer.hideComposition", + "type": "class method", + "description": "Hides the current composition.", + "short_description": "Hides the current composition.", + "line": 18761, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "hideComposition", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.hideComposition", + "outFile": "virtual_renderer.html#VirtualRenderer.hideComposition" + }, + { + "id": "VirtualRenderer.hideCursor", + "type": "class method", + "description": "Hides the cursor icon.", + "short_description": "Hides the cursor icon.", + "line": 18431, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "hideCursor", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.hideCursor", + "outFile": "virtual_renderer.html#VirtualRenderer.hideCursor" + }, + { + "id": "VirtualRenderer.isScrollableBy", + "type": "class method", + "description": "Returns `true` if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.", + "short_description": "Returns `true` if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.", + "line": 18657, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltaX", + "description": "The x value to scroll by", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "deltaY", + "description": "The y value to scroll by", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Boolean", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "isScrollableBy", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.isScrollableBy", + "outFile": "virtual_renderer.html#VirtualRenderer.isScrollableBy" + }, + { + "id": "new VirtualRenderer", + "type": "constructor", + "description": "Constructs a new `VirtualRenderer` within the `container` specified, applying the given `theme`.", + "short_description": "Constructs a new `VirtualRenderer` within the `container` specified, applying the given `theme`.", + "line": 17563, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "container", + "description": "The root element of the editor", + "types": [ + "DOMElement" + ], + "optional": false + }, + { + "name": "theme", + "description": "The starting theme", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "new", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.new", + "outFile": "virtual_renderer.html#VirtualRenderer.new" + }, + { + "id": "VirtualRenderer.onResize", + "type": "class method", + "description": "[Triggers a resize of the editor.]{: #VirtualRenderer.onResize}", + "short_description": "[Triggers a resize of the editor.]{: #VirtualRenderer.onResize}", + "line": 17787, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "force", + "description": "If `true`, recomputes the size, even if the height and width haven't changed", + "types": [ + "Boolean" + ], + "optional": false + }, + { + "name": "gutterWidth", + "description": "The width of the gutter in pixels", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "width", + "description": "The width of the editor in pixels", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "height", + "description": "The hiehgt of the editor, in pixels", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "onResize", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.onResize", + "outFile": "virtual_renderer.html#VirtualRenderer.onResize" + }, + { + "id": "VirtualRenderer.removeGutterDecoration", + "type": "class method", + "description": "Deprecated; (moved to [[EditSession]])", + "short_description": "Deprecated; (moved to [[EditSession]])", + "line": 18395, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "className", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "removeGutterDecoration", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.removeGutterDecoration", + "outFile": "virtual_renderer.html#VirtualRenderer.removeGutterDecoration" + }, + { + "id": "VirtualRenderer.scrollBy", + "type": "class method", + "description": "Scrolls the editor across both x- and y-axes.", + "short_description": "Scrolls the editor across both x- and y-axes.", + "line": 18645, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "deltaX", + "description": "The x value to scroll by", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "deltaY", + "description": "The y value to scroll by", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollBy", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollBy", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollBy" + }, + { + "id": "VirtualRenderer.scrollCursorIntoView", + "type": "class method", + "description": "Scrolls the cursor into the first visibile area of the editor", + "short_description": "Scrolls the cursor into the first visibile area of the editor", + "line": 18453, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "cursor", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "offset", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollCursorIntoView", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollCursorIntoView", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollCursorIntoView" + }, + { + "id": "VirtualRenderer.scrollToLine", + "type": "class method", + "description": "Gracefully scrolls the editor to the row indicated.", + "short_description": "Gracefully scrolls the editor to the row indicated.", + "line": 18563, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "line", + "description": "A line number", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "center", + "description": "If `true`, centers the editor the to indicated line", + "types": [ + "Boolean" + ], + "optional": false + }, + { + "name": "animate", + "description": "If `true` animates scrolling", + "types": [ + "Boolean" + ], + "optional": false + }, + { + "name": "callback", + "description": "Function to be called after the animation has finished", + "types": [ + "Function" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollToLine", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollToLine", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollToLine" + }, + { + "id": "VirtualRenderer.scrollToRow", + "type": "class method", + "description": "Gracefully scrolls from the top of the editor to the row indicated.", + "short_description": "Gracefully scrolls from the top of the editor to the row indicated.", + "line": 18524, + "author": [], + "related": "EditSession.setScrollTop", + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "A row id", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollToRow", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollToRow", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollToRow" + }, + { + "id": "VirtualRenderer.scrollToX", + "type": "class method", + "description": "Scrolls the editor across the x-axis to the pixel indicated.", + "short_description": "Scrolls the editor across the x-axis to the pixel indicated.", + "line": 18629, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollLeft", + "description": "The position to scroll to", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollToX", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollToX", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollToX" + }, + { + "id": "VirtualRenderer.scrollToY", + "type": "class method", + "description": "Scrolls the editor to the y pixel indicated.", + "short_description": "Scrolls the editor to the y pixel indicated.", + "line": 18613, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "scrollTop", + "description": "The position to scroll to", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Number", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "scrollToY", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.scrollToY", + "outFile": "virtual_renderer.html#VirtualRenderer.scrollToY" + }, + { + "id": "VirtualRenderer.setAnimatedScroll", + "type": "class method", + "description": "Identifies whether you want to have an animated scroll or not.", + "short_description": "Identifies whether you want to have an animated scroll or not.", + "line": 17855, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "shouldAnimate", + "description": "Set to `true` to show animated scrolls", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setAnimatedScroll", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setAnimatedScroll", + "outFile": "virtual_renderer.html#VirtualRenderer.setAnimatedScroll" + }, + { + "id": "VirtualRenderer.setAnnotations", + "type": "class method", + "description": "Sets annotations for the gutter.", + "short_description": "Sets annotations for the gutter.", + "line": 18411, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "annotations", + "description": "An array containing annotations", + "types": [ + "Array" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setAnnotations", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setAnnotations", + "outFile": "virtual_renderer.html#VirtualRenderer.setAnnotations" + }, + { + "id": "VirtualRenderer.setCompositionText", + "type": "class method", + "incomplete": true, + "line": 18752, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "text", + "description": "A string of text to use\n\nSets the inner text of the current composition to `text`.", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setCompositionText", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setCompositionText", + "outFile": "virtual_renderer.html#VirtualRenderer.setCompositionText" + }, + { + "id": "VirtualRenderer.setHScrollBarAlwaysVisible", + "type": "class method", + "description": "Identifies whether you want to show the horizontal scrollbar or not.", + "short_description": "Identifies whether you want to show the horizontal scrollbar or not.", + "line": 18153, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "alwaysVisible", + "description": "Set to `true` to make the horizontal scroll bar visible", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setHScrollBarAlwaysVisible", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setHScrollBarAlwaysVisible", + "outFile": "virtual_renderer.html#VirtualRenderer.setHScrollBarAlwaysVisible" + }, + { + "id": "VirtualRenderer.setPadding", + "type": "class method", + "description": "Sets the padding for all the layers.", + "short_description": "Sets the padding for all the layers.", + "line": 18127, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "padding", + "description": "A new padding value (in pixels)", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setPadding", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setPadding", + "outFile": "virtual_renderer.html#VirtualRenderer.setPadding" + }, + { + "id": "VirtualRenderer.setPrintMarginColumn", + "type": "class method", + "description": "Identifies whether you want to show the print margin column or not.", + "short_description": "Identifies whether you want to show the print margin column or not.", + "line": 17929, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showPrintMargin", + "description": "Set to `true` to show the print margin column", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setPrintMarginColumn", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setPrintMarginColumn", + "outFile": "virtual_renderer.html#VirtualRenderer.setPrintMarginColumn" + }, + { + "id": "VirtualRenderer.setSession", + "type": "class method", + "description": "Associates the renderer with an [[EditSession `EditSession`]].", + "short_description": "Associates the renderer with an [[EditSession `EditSession`]].", + "line": 17706, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "session", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setSession", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setSession", + "outFile": "virtual_renderer.html#VirtualRenderer.setSession" + }, + { + "id": "VirtualRenderer.setShowGutter", + "type": "class method", + "description": "Identifies whether you want to show the gutter or not.", + "short_description": "Identifies whether you want to show the gutter or not.", + "line": 17959, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "show", + "description": "Set to `true` to show the gutter", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setShowGutter", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setShowGutter", + "outFile": "virtual_renderer.html#VirtualRenderer.setShowGutter" + }, + { + "id": "VirtualRenderer.setShowInvisibles", + "type": "class method", + "description": "Identifies whether you want to show invisible characters or not.", + "short_description": "Identifies whether you want to show invisible characters or not.", + "line": 17875, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showInvisibles", + "description": "Set to `true` to show invisibles", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setShowInvisibles", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setShowInvisibles", + "outFile": "virtual_renderer.html#VirtualRenderer.setShowInvisibles" + }, + { + "id": "VirtualRenderer.setShowPrintMargin", + "type": "class method", + "description": "Identifies whether you want to show the print margin or not.", + "short_description": "Identifies whether you want to show the print margin or not.", + "line": 17907, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "showPrintMargin", + "description": "Set to `true` to show the print margin", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setShowPrintMargin", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setShowPrintMargin", + "outFile": "virtual_renderer.html#VirtualRenderer.setShowPrintMargin" + }, + { + "id": "VirtualRenderer.setStyle", + "type": "class method", + "description": "[Adds a new class, `style`, to the editor.]{: #VirtualRenderer.setStyle}", + "short_description": "[Adds a new class, `style`, to the editor.]{: #VirtualRenderer.setStyle}", + "line": 18854, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "style", + "description": "A class name", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setStyle", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setStyle", + "outFile": "virtual_renderer.html#VirtualRenderer.setStyle" + }, + { + "id": "VirtualRenderer.setTheme", + "type": "class method", + "description": "[Sets a new theme for the editor. `theme` should exist, and be a directory path, like `ace/theme/textmate`.]{: #VirtualRenderer.setTheme}", + "short_description": "[Sets a new theme for the editor. `theme` should exist, and be a directory path, like `ace/theme/textmate`.]{: #VirtualRenderer.setTheme}", + "line": 18782, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "theme", + "description": "The path to a theme", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "setTheme", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.setTheme", + "outFile": "virtual_renderer.html#VirtualRenderer.setTheme" + }, + { + "id": "VirtualRenderer.showComposition", + "type": "class method", + "incomplete": true, + "line": 18734, + "private": true, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "position", + "description": "", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "showComposition", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.showComposition", + "outFile": "virtual_renderer.html#VirtualRenderer.showComposition" + }, + { + "id": "VirtualRenderer.showCursor", + "type": "class method", + "description": "Shows the cursor icon.", + "short_description": "Shows the cursor icon.", + "line": 18439, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "showCursor", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.showCursor", + "outFile": "virtual_renderer.html#VirtualRenderer.showCursor" + }, + { + "id": "VirtualRenderer.textToScreenCoordinates", + "type": "class method", + "description": "Returns an object containing the `pageX` and `pageY` coordinates of the document position.", + "short_description": "Returns an object containing the `pageX` and `pageY` coordinates of the document position.", + "line": 18696, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "row", + "description": "The document row position", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "column", + "description": "The document column position", + "types": [ + "Number" + ], + "optional": false + } + ] + }, + "returns": [ + { + "type": "Object", + "description": "" + } + ] + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "textToScreenCoordinates", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.textToScreenCoordinates", + "outFile": "virtual_renderer.html#VirtualRenderer.textToScreenCoordinates" + }, + { + "id": "VirtualRenderer.unsetStyle", + "type": "class method", + "description": "[Removes the class `style` from the editor.]{: #VirtualRenderer.unsetStyle}", + "short_description": "[Removes the class `style` from the editor.]{: #VirtualRenderer.unsetStyle}", + "line": 18864, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "style", + "description": "A class name", + "types": [ + "String" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "unsetStyle", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.unsetStyle", + "outFile": "virtual_renderer.html#VirtualRenderer.unsetStyle" + }, + { + "id": "VirtualRenderer.updateBackMarkers", + "type": "class method", + "description": "Schedules an update to all the back markers in the document.", + "short_description": "Schedules an update to all the back markers in the document.", + "line": 18377, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateBackMarkers", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateBackMarkers", + "outFile": "virtual_renderer.html#VirtualRenderer.updateBackMarkers" + }, + { + "id": "VirtualRenderer.updateBreakpoints", + "type": "class method", + "description": "Redraw breakpoints.", + "short_description": "Redraw breakpoints.", + "line": 18403, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "rows", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateBreakpoints", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateBreakpoints", + "outFile": "virtual_renderer.html#VirtualRenderer.updateBreakpoints" + }, + { + "id": "VirtualRenderer.updateCursor", + "type": "class method", + "description": "Updates the cursor icon.", + "short_description": "Updates the cursor icon.", + "line": 18423, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateCursor", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateCursor", + "outFile": "virtual_renderer.html#VirtualRenderer.updateCursor" + }, + { + "id": "VirtualRenderer.updateFontSize", + "type": "class method", + "description": "Updates the font size.", + "short_description": "Updates the font size.", + "line": 17779, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateFontSize", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateFontSize", + "outFile": "virtual_renderer.html#VirtualRenderer.updateFontSize" + }, + { + "id": "VirtualRenderer.updateFrontMarkers", + "type": "class method", + "description": "Schedules an update to all the front markers in the document.", + "short_description": "Schedules an update to all the front markers in the document.", + "line": 18368, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateFrontMarkers", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateFrontMarkers", + "outFile": "virtual_renderer.html#VirtualRenderer.updateFrontMarkers" + }, + { + "id": "VirtualRenderer.updateFull", + "type": "class method", + "description": "Triggers a full update of all the layers, for all the rows.", + "short_description": "Triggers a full update of all the layers, for all the rows.", + "line": 17764, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "force", + "description": "If `true`, forces the changes through", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateFull", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateFull", + "outFile": "virtual_renderer.html#VirtualRenderer.updateFull" + }, + { + "id": "VirtualRenderer.updateLines", + "type": "class method", + "description": "Triggers a partial update of the text, from the range given by the two parameters.", + "short_description": "Triggers a partial update of the text, from the range given by the two parameters.", + "line": 17724, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "firstRow", + "description": "The first row to update", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "lastRow", + "description": "The last row to update", + "types": [ + "Number" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateLines", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateLines", + "outFile": "virtual_renderer.html#VirtualRenderer.updateLines" + }, + { + "id": "VirtualRenderer.updateText", + "type": "class method", + "description": "Triggers a full update of the text, for all the rows.", + "short_description": "Triggers a full update of the text, for all the rows.", + "line": 17757, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "updateText", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.updateText", + "outFile": "virtual_renderer.html#VirtualRenderer.updateText" + }, + { + "id": "VirtualRenderer.visualizeBlur", + "type": "class method", + "description": "Blurs the current container.", + "short_description": "Blurs the current container.", + "line": 18726, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "visualizeBlur", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.visualizeBlur", + "outFile": "virtual_renderer.html#VirtualRenderer.visualizeBlur" + }, + { + "id": "VirtualRenderer.visualizeFocus", + "type": "class method", + "description": "Focuses the current container.", + "short_description": "Focuses the current container.", + "line": 18718, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "name": "visualizeFocus", + "name_prefix": "VirtualRenderer.", + "path": "VirtualRenderer.visualizeFocus", + "outFile": "virtual_renderer.html#VirtualRenderer.visualizeFocus" + } + ], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", + "subclasses": [], + "name": "VirtualRenderer", + "path": "VirtualRenderer", + "outFile": "virtual_renderer.html" + }, + { + "id": ".addRange", + "type": "class method", + "description": "extension\nSelection.addRange(range, $blockChangeEvents)\n- range (Range): The new range to add\n- $blockChangeEvents (Boolean): Whether or not to block changing events\n\nAdds a range to a selection by entering multiselect mode, if necessary.", + "short_description": "extension\nSelection.addRange(range, $blockChangeEvents)\n- range (Range): The new range to add\n- $blockChangeEvents (Boolean): Whether or not to block changing events\n", + "line": 13729, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "$blockChangeEvents", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "addRange", + "name_prefix": ".", + "path": ".addRange", + "outFile": "multi_select.html#.addRange" + }, + { + "id": ".addSelectionMarker", + "type": "class method", + "description": "Editor.addSelectionMarker(orientedRange) -> Range\n- orientedRange (Range): A range containing a cursor\n\nAdds the selection and cursor.", + "short_description": "Editor.addSelectionMarker(orientedRange) -> Range\n- orientedRange (Range): A range containing a cursor\n", + "line": 13997, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "orientedRange", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "addSelectionMarker", + "name_prefix": ".", + "path": ".addSelectionMarker", + "outFile": "multi_select.html#.addSelectionMarker" + }, + { + "id": ".alignCursors", + "type": "class method", + "description": "extension\nEditor.alignCursors()\n\naligns cursors or selected text", + "short_description": "extension\nEditor.alignCursors()\n", + "line": 14339, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "alignCursors", + "name_prefix": ".", + "path": ".alignCursors", + "outFile": "multi_select.html#.alignCursors" + }, + { + "id": ".Editor", + "type": "class method", + "description": "Adds a cursor above or below the active cursor. .selectMoreLines", + "short_description": "Adds a cursor above or below the active cursor. .selectMoreLines", + "line": 14222, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dir", + "description": "The direction of lines to select: -1 for up, 1 for down", + "types": [ + "Number" + ], + "optional": false + }, + { + "name": "skip", + "description": "If `true`, removes the active selection range", + "types": [ + "Boolean" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "Editor", + "name_prefix": ".", + "path": ".Editor", + "outFile": "multi_select.html#.Editor" + }, + { + "id": ".exitMultiSelectMode", + "type": "class method", + "description": "Editor.exitMultiSelectMode() -> Void\n\nRemoves all the selections except the last added one.", + "short_description": "Editor.exitMultiSelectMode() -> Void\n", + "line": 14140, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "exitMultiSelectMode", + "name_prefix": ".", + "path": ".exitMultiSelectMode", + "outFile": "multi_select.html#.exitMultiSelectMode" + }, + { + "id": ".findAll", + "type": "class method", + "description": "Editor.findAll(needle, options, additive) -> Number\n- needle (String): The text to find\n- options (Object): The search options\n- additive (Boolean): keeps\n\nFinds and selects all the occurences of `needle`.", + "short_description": "Editor.findAll(needle, options, additive) -> Number\n- needle (String): The text to find\n- options (Object): The search options\n- additive (Boolean): keeps\n", + "line": 14191, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "needle", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "options", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "additive", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "findAll", + "name_prefix": ".", + "path": ".findAll", + "outFile": "multi_select.html#.findAll" + }, + { + "id": ".forEachSelection", + "type": "class method", + "description": "Editor.forEachSelection(cmd, args)\n- cmd (String): The command to execute\n- args (String): Any arguments for the command\n\nExecutes a command for each selection range.", + "short_description": "Editor.forEachSelection(cmd, args)\n- cmd (String): The command to execute\n- args (String): Any arguments for the command\n", + "line": 14103, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "cmd", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "args", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "forEachSelection", + "name_prefix": ".", + "path": ".forEachSelection", + "outFile": "multi_select.html#.forEachSelection" + }, + { + "id": ".mergeOverlappingRanges", + "type": "class method", + "description": "extension\nSelection.mergeOverlappingRanges()\n\nMerges overlapping ranges ensuring consistency after changes", + "short_description": "extension\nSelection.mergeOverlappingRanges()\n", + "line": 13792, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "mergeOverlappingRanges", + "name_prefix": ".", + "path": ".mergeOverlappingRanges", + "outFile": "multi_select.html#.mergeOverlappingRanges" + }, + { + "id": ".rectangularRangeBlock", + "type": "class method", + "description": "extension\nSelection.rectangularRangeBlock(screenCursor, screenAnchor, includeEmptyLines) -> Range\n- screenCursor (Cursor): The cursor to use\n- screenAnchor (Anchor): The anchor to use\n- includeEmptyLines (Boolean): If true, this includes ranges inside the block which are empty due to clipping\n\nGets list of ranges composing rectangular block on the screen", + "short_description": "extension\nSelection.rectangularRangeBlock(screenCursor, screenAnchor, includeEmptyLines) -> Range\n- screenCursor (Cursor): The cursor to use\n- screenAnchor (Anchor): The anchor to use\n- includeEmptyLines (Boolean): If true, this includes ranges inside the block which are empty due to clipping\n", + "line": 13909, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "screenCursor", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "screenAnchor", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "includeEmptyLines", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "rectangularRangeBlock", + "name_prefix": ".", + "path": ".rectangularRangeBlock", + "outFile": "multi_select.html#.rectangularRangeBlock" + }, + { + "id": ".removeSelectionMarker", + "type": "class method", + "description": "Editor.removeSelectionMarker(range)\n- range (Range): The selection range added with [[Editor.addSelectionMarker `addSelectionMarker()`]].\n\nRemoves the selection marker.", + "short_description": "Editor.removeSelectionMarker(range)\n- range (Range): The selection range added with [[Editor.addSelectionMarker `addSelectionMarker()`]].\n", + "line": 14015, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "range", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "removeSelectionMarker", + "name_prefix": ".", + "path": ".removeSelectionMarker", + "outFile": "multi_select.html#.removeSelectionMarker" + }, + { + "id": ".selectMore", + "type": "class method", + "description": "extension\nEditor.selectMore(dir, skip)\n- dir (Number): The direction of lines to select: -1 for up, 1 for down\n- skip (Boolean): If `true`, removes the active selection range\n\nFinds the next occurence of text in an active selection and adds it to the selections.", + "short_description": "extension\nEditor.selectMore(dir, skip)\n- dir (Number): The direction of lines to select: -1 for up, 1 for down\n- skip (Boolean): If `true`, removes the active selection range\n", + "line": 14311, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dir", + "description": "", + "types": [ + "Object" + ], + "optional": false + }, + { + "name": "skip", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "selectMore", + "name_prefix": ".", + "path": ".selectMore", + "outFile": "multi_select.html#.selectMore" + }, + { + "id": ".substractPoint", + "type": "class method", + "description": "extension\nSelection.substractPoint(pos) -> Range\n- pos (Range): The position to remove, as a `{row, column}` object\n\nRemoves a Range containing pos (if it exists).", + "short_description": "extension\nSelection.substractPoint(pos) -> Range\n- pos (Range): The position to remove, as a `{row, column}` object\n", + "line": 13778, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "pos", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "substractPoint", + "name_prefix": ".", + "path": ".substractPoint", + "outFile": "multi_select.html#.substractPoint" + }, + { + "id": ".transposeSelections", + "type": "class method", + "description": "extension\nEditor.transposeSelections(dir)\n- dir (Number): The direction to rotate selections\n\nTransposes the selected ranges.", + "short_description": "extension\nEditor.transposeSelections(dir)\n- dir (Number): The direction to rotate selections\n", + "line": 14268, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [ + { + "name": "dir", + "description": "", + "types": [ + "Object" + ], + "optional": false + } + ] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "transposeSelections", + "name_prefix": ".", + "path": ".transposeSelections", + "outFile": "multi_select.html#.transposeSelections" + }, + { + "id": ".updateSelectionMarkers", + "type": "class method", + "description": "Editor.updateSelectionMarkers()\n\nUpdates the cursor and marker layers.", + "short_description": "Editor.updateSelectionMarkers()\n", + "line": 13987, + "author": [], + "signatures": [ + { + "arguments": { + "arguments": [] + } + } + ], + "aliases": [], + "children": [], + "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", + "name": "updateSelectionMarkers", + "name_prefix": ".", + "path": ".updateSelectionMarkers", + "outFile": "multi_select.html#.updateSelectionMarkers" } ] } diff --git a/doc/build.js b/doc/build.js index 5df74581..97365b1a 100644 --- a/doc/build.js +++ b/doc/build.js @@ -2,6 +2,7 @@ var fs = require("fs"); var path = require("path"); var panino = require("panino"); var srcPath = __dirname + "/../lib/ace"; +var buildType = process.argv.splice(2)[0];buildType var options = { title : "Ace API", @@ -46,7 +47,7 @@ panino.parse(files, options, function (err, ast) { process.exit(1); } - panino.render('json', ast, options, function (err) { + panino.render(buildType || 'html', ast, options, function (err) { if (err) { console.error(err); process.exit(1); diff --git a/lib/ace/anchor.js b/lib/ace/anchor.js index 60c60a2d..e87f4900 100644 --- a/lib/ace/anchor.js +++ b/lib/ace/anchor.js @@ -36,19 +36,19 @@ var EventEmitter = require("./lib/event_emitter").EventEmitter; /** * - * Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated + * Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated. * * @class Anchor **/ /** - * new Anchor(doc, row, column) + * Creates a new `Anchor` and associates it with a document. + * * @param {Document} doc The document to associate with the anchor * @param {Number} row The starting row position * @param {Number} column The starting column position * - * Creates a new `Anchor` and associates it with a document. - * + * @constructor **/ var Anchor = exports.Anchor = function(doc, row, column) { @@ -69,7 +69,7 @@ var Anchor = exports.Anchor = function(doc, row, column) { /** * Returns an object identifying the `row` and `column` position of the current anchor. - * @returns Object + * @returns {Object} **/ this.getPosition = function() { @@ -79,7 +79,7 @@ var Anchor = exports.Anchor = function(doc, row, column) { /** * * Returns the current document. - * @returns Document + * @returns {Document} **/ this.getDocument = function() { @@ -87,15 +87,17 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * @event change - * @param {Object} e An object containing information about the anchor position. It has two properties: - - `old`: An object describing the old Anchor position - - `value`: An object describing the new Anchor position - * Both of these objects have a `row` and `column` property corresponding to the position. - * * Fires whenever the anchor position changes. * + * Both of these objects have a `row` and `column` property corresponding to the position. + * * Events that can trigger this function include [[Anchor.setPosition `setPosition()`]]. + * + * @event change + * @param {Object} e An object containing information about the anchor position. It has two properties: + * - `old`: An object describing the old Anchor position + * - `value`: An object describing the new Anchor position + * * **/ @@ -165,12 +167,12 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * Anchor.setPosition(row, column, noClip) + * Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped. * @param {Number} row The row index to move the anchor to * @param {Number} column The column index to move the anchor to * @param {Boolean} noClip Identifies if you want the position to be clipped * - * Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped. + * * **/ @@ -212,11 +214,11 @@ var Anchor = exports.Anchor = function(doc, row, column) { }; /** - * Anchor.clipPositionToDocument(row, column) + * Clips the anchor position to the specified row and column. * @param {Number} row The row index to clip the anchor to * @param {Number} column The column index to clip the anchor to * - * Clips the anchor position to the specified row and column. + * * **/ this.$clipPositionToDocument = function(row, column) { diff --git a/lib/ace/background_tokenizer.js b/lib/ace/background_tokenizer.js index 288e543a..28d11994 100644 --- a/lib/ace/background_tokenizer.js +++ b/lib/ace/background_tokenizer.js @@ -38,22 +38,23 @@ var EventEmitter = require("./lib/event_emitter").EventEmitter; var MAX_LINE_LENGTH = 5000; /** - * @class BackgroundTokenizer + * * * Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. * * If a certain row is changed, everything below that row is re-tokenized. * + * @class BackgroundTokenizer **/ /** - * new BackgroundTokenizer(tokenizer, editor) + * Creates a new `BackgroundTokenizer` object. * @param {Tokenizer} tokenizer The tokenizer to use * @param {Editor} editor The editor to associate with * - * Creates a new `BackgroundTokenizer` object. - * - * + * + * + * @constructor **/ var BackgroundTokenizer = function(tokenizer, editor) { @@ -100,10 +101,10 @@ var BackgroundTokenizer = function(tokenizer, editor) { oop.implement(this, EventEmitter); /** - * @param {Tokenizer} tokenizer The new tokenizer to use - * * Sets a new tokenizer for this object. * + * @param {Tokenizer} tokenizer The new tokenizer to use + * **/ this.setTokenizer = function(tokenizer) { this.tokenizer = tokenizer; @@ -114,10 +115,8 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * @param {Document} doc The new document to associate with - * * Sets a new document to associate with this object. - * + * @param {Document} doc The new document to associate with **/ this.setDocument = function(doc) { this.doc = doc; @@ -128,18 +127,17 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** + * Fires whenever the background tokeniziers between a range of rows are going to be updated. + * * @event update * @param {Object} e An object containing two properties, `first` and `last`, which indicate the rows of the region being updated. * - * Fires whenever the background tokeniziers between a range of rows are going to be updated. - * **/ /** + * Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated. * @param {Number} firstRow The starting row region * @param {Number} lastRow The final row region * - * Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated. - * **/ this.fireUpdateEvent = function(firstRow, lastRow) { var data = { @@ -150,10 +148,10 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * @param {Number} startRow The row to start at - * * Starts tokenizing at the row indicated. * + * @param {Number} startRow The row to start at + * **/ this.start = function(startRow) { this.currentLine = Math.min(startRow || 0, this.currentLine, this.doc.getLength()); @@ -202,9 +200,11 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** + * Gives list of tokens of the row. (tokens are cached) + * * @param {Number} row The row to get tokens at * - * Gives list of tokens of the row. (tokens are cached) + * * **/ this.getTokens = function(row) { @@ -212,9 +212,9 @@ var BackgroundTokenizer = function(tokenizer, editor) { }; /** - * @param {Number} row The row to get state at - * * [Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState} + * + * @param {Number} row The row to get state at **/ this.getState = function(row) { if (this.currentLine == row) diff --git a/lib/ace/document.js b/lib/ace/document.js index 0fc89c25..71939009 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -37,21 +37,18 @@ var Range = require("./range").Range; var Anchor = require("./anchor").Anchor; /** - * @class Document - * * Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. * * At its core, `Document`s are just an array of strings, with each row in the document matching up to the array index. * - * + * @class Document **/ /** - * new Document([text]) - * @param {String | Array} text The starting text - * + * * Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty. - * + * @param {String | Array} text The starting text + * @constructor **/ var Document = function(text) { @@ -73,9 +70,9 @@ var Document = function(text) { oop.implement(this, EventEmitter); /** - * @param {String} text The text to use - * * Replaces all the lines in the current `Document` with the value of `text`. + * + * @param {String} text The text to use **/ this.setValue = function(text) { var len = this.getLength(); @@ -91,21 +88,23 @@ var Document = function(text) { }; /** + * Creates a new `Anchor` to define a floating point in the document. * @param {Number} row The row number to use * @param {Number} column The column number to use * - * Creates a new `Anchor` to define a floating point in the document. + * **/ this.createAnchor = function(row, column) { return new Anchor(this, row, column); }; /** - * @param {String} text The text to work with - * @returns String A String array, with each index containing a piece of the original `text` string. - * * Splits a string of text on any newline (`\n`) or carriage-return ('\r') characters. + * * @method $split + * @param {String} text The text to work with + * @returns {String} A String array, with each index containing a piece of the original `text` string. + * * **/ @@ -131,12 +130,12 @@ var Document = function(text) { }; /** - * Document.getNewLineCharacter() -> String + * Returns the newline character that's being used, depending on the value of `newLineMode`. * @returns {String} If `newLineMode == windows`, `\r\n` is returned. * If `newLineMode == unix`, `\n` is returned. * If `newLineMode == auto`, the value of `autoNewLine` is returned. * - * Returns the newline character that's being used, depending on the value of `newLineMode`. + * * * **/ @@ -156,9 +155,10 @@ var Document = function(text) { this.$autoNewLine = "\n"; this.$newLineMode = "auto"; /** + * [Sets the new line mode.]{: #Document.setNewLineMode.desc} * @param {String} newLineMode [The newline mode to use; can be either `windows`, `unix`, or `auto`]{: #Document.setNewLineMode.param} * - * [Sets the new line mode.]{: #Document.setNewLineMode.desc} + * **/ this.setNewLineMode = function(newLineMode) { if (this.$newLineMode === newLineMode) @@ -169,16 +169,17 @@ var Document = function(text) { /** * [Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode} - * + * @returns String **/ this.getNewLineMode = function() { return this.$newLineMode; }; /** + * Returns `true` if `text` is a newline character (either `\r\n`, `\r`, or `\n`). * @param {String} text The text to check * - * Returns `true` if `text` is a newline character (either `\r\n`, `\r`, or `\n`). + * * **/ this.isNewLine = function(text) { @@ -186,9 +187,10 @@ var Document = function(text) { }; /** + * Returns a verbatim copy of the given line as it is in the document * @param {Number} row The row index to retrieve * - * Returns a verbatim copy of the given line as it is in the document + * * **/ this.getLine = function(row) { @@ -196,10 +198,11 @@ var Document = function(text) { }; /** + * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. * @param {Number} firstRow The first row index to retrieve * @param {Number} lastRow The final row index to retrieve * - * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. + * * **/ this.getLines = function(firstRow, lastRow) { @@ -221,9 +224,10 @@ var Document = function(text) { }; /** + * [Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc} * @param {Range} range The range to work with * - * [Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc} + * **/ this.getTextRange = function(range) { if (range.start.row == range.end.row) { @@ -248,11 +252,12 @@ var Document = function(text) { }; /** + * Inserts a block of `text` and the indicated `position`. * @param {Number} position The position to start inserting at * @param {String} text A chunk of text to insert * @returns {Number} The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. * - * Inserts a block of `text` and the indicated `position`. + * * **/ this.insert = function(position, text) { @@ -279,9 +284,6 @@ var Document = function(text) { }; /** - * @event change - * @param {Object} e Contains at least one property called `"action"`. `"action"` indicates the action that triggered the change. Each action also has a set of additional properties. - * * Fires whenever the document changes. * * Several methods trigger different `"change"` events. Below is a list of each action type, followed by each property that's also available: @@ -300,11 +302,15 @@ var Document = function(text) { * * `range`: the [[Range]] of the change within the document * * `text`: the text that's being removed * + * @event change + * @param {Object} e Contains at least one property called `"action"`. `"action"` indicates the action that triggered the change. Each action also has a set of additional properties. + * **/ /** + * Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event. * @param {Number} row The index of the row to insert at * @param {Array} lines An array of strings - * @returns Object Contains the final row and column, like this: + * @returns {Object} Contains the final row and column, like this: * ``` * {row: endRow, column: 0} * ``` @@ -313,7 +319,7 @@ var Document = function(text) { * {row: row, column: 0} * ``` * - * Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event. + * * * **/ @@ -343,16 +349,13 @@ var Document = function(text) { }; /** + * Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event. * @param {String} position The position to insert at * @returns {Object} Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * ``` * {row: endRow, column: 0} * ``` * - * Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event. - * - * - * **/ this.insertNewLine = function(position) { position = this.$clipPosition(position); @@ -377,6 +380,7 @@ var Document = function(text) { }; /** + * Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event. * @param {Number} position The position to insert at * @param {String} text A chunk of text * @returns {Object} Returns an object containing the final row and column, like this: @@ -385,10 +389,7 @@ var Document = function(text) { * ``` * @returns {Number} If `text` is empty, this function returns the value of `position` * - * Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event. - * - * - * + * **/ this.insertInLine = function(position, text) { if (text.length == 0) @@ -415,11 +416,10 @@ var Document = function(text) { }; /** + * Removes the `range` from the document. * @param {Range} range A specified Range to remove * @returns {Object} Returns the new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. * - * Removes the `range` from the document. - * * **/ this.remove = function(range) { @@ -455,13 +455,12 @@ var Document = function(text) { }; /** + * Removes the specified columns from the `row`. This method also triggers the `'change'` event. * @param {Number} row The row to remove from * @param {Number} startColumn The column to start removing at * @param {Number} endColumn The column to stop removing at * @returns {Object} Returns an object containing `startRow` and `startColumn`, indicating the new row and column values.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              If `startColumn` is equal to `endColumn`, this function returns nothing. * - * Removes the specified columns from the `row`. This method also triggers the `'change'` event. - * * **/ this.removeInLine = function(row, startColumn, endColumn) { @@ -484,12 +483,11 @@ var Document = function(text) { }; /** + * Removes a range of full lines. This method also triggers the `'change'` event. * @param {Number} firstRow The first row to be removed * @param {Number} lastRow The last row to be removed * @returns {[String]} Returns all the removed lines. * - * Removes a range of full lines. This method also triggers the `'change'` event. - * * **/ this.removeLines = function(firstRow, lastRow) { @@ -507,10 +505,9 @@ var Document = function(text) { }; /** + * Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event. * @param {Number} row The row to check * - * Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event. - * **/ this.removeNewLine = function(row) { var firstLine = this.getLine(row); @@ -530,6 +527,7 @@ var Document = function(text) { }; /** + * Replaces a range in the document with the new `text`. * @param {Range} range A specified Range to replace * @param {String} text The new text to use as a replacement * @returns {Object} Returns an object containing the final row and column, like this: @@ -537,7 +535,6 @@ var Document = function(text) { * If the text and range are empty, this function returns an object containing the current `range.start` value. * If the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value. * - * Replaces a range in the document with the new `text`. * **/ this.replace = function(range, text) { @@ -561,7 +558,7 @@ var Document = function(text) { }; /** - * =Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`. + * Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`. **/ this.applyDeltas = function(deltas) { for (var i=0; i Document - * * Returns the `Document` associated with this session. - * + * @return {Document} **/ this.getDocument = function() { return this.doc; @@ -214,8 +213,6 @@ var EditSession = function(text, mode) { /** * @param {Number} row The row to work with * - * - * **/ this.$resetRowCache = function(docRow) { if (!docRow) { @@ -288,9 +285,10 @@ var EditSession = function(text, mode) { }; /** + * Sets the session text. * @param {String} text The new text to place * - * Sets the session text. + * * **/ this.setValue = function(text) { @@ -308,13 +306,14 @@ var EditSession = function(text, mode) { /** * Returns the current [[Document `Document`]] as a string. * @method toString - * @alias EditSession.toString - * + * @alias EditSession.getValue + * **/ /** - * Returns the current [[Document `Document`]] as a string. - * + * Returns the current [[Document `Document`]] as a string. + * @method getValue + * @alias EditSession.toString **/ this.getValue = this.toString = function() { @@ -329,9 +328,8 @@ var EditSession = function(text, mode) { }; /** - * @param {Number} row The row to start at - * * {:BackgroundTokenizer.getState} + * @param {Number} row The row to start at * * @related BackgroundTokenizer.getState **/ @@ -340,10 +338,10 @@ var EditSession = function(text, mode) { }; /** - * + * Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows. * @param {Number} row The row to start at * - * Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows. + * * **/ this.getTokens = function(row) { @@ -351,10 +349,11 @@ var EditSession = function(text, mode) { }; /** + * Returns an object indicating the token at the current row. The object has two properties: `index` and `start`. * @param {Number} row The row number to retrieve from * @param {Number} column The column number to retrieve from * - * Returns an object indicating the token at the current row. The object has two properties: `index` and `start`. + * **/ this.getTokenAt = function(row, column) { var tokens = this.bgTokenizer.getTokens(row); @@ -378,9 +377,10 @@ var EditSession = function(text, mode) { }; /** + * Sets the undo manager. * @param {UndoManager} undoManager The new undo manager * - * Sets the undo manager. + * **/ this.setUndoManager = function(undoManager) { this.$undoManager = undoManager; @@ -453,9 +453,10 @@ var EditSession = function(text, mode) { this.$useSoftTabs = true; /** + * Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\t'`). * @param {Boolean} useSoftTabs Value indicating whether or not to use soft tabs * - * Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\t'`). + * * **/ this.setUseSoftTabs = function(useSoftTabs) { @@ -466,7 +467,7 @@ var EditSession = function(text, mode) { /** * Returns `true` if soft tabs are being used, `false` otherwise. - * + * @returns Boolean **/ this.getUseSoftTabs = function() { return this.$useSoftTabs; @@ -474,9 +475,10 @@ var EditSession = function(text, mode) { this.$tabSize = 4; /** + * Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event. * @param {Number} tabSize The new tab size * - * Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event. + * **/ this.setTabSize = function(tabSize) { if (isNaN(tabSize) || this.$tabSize === tabSize) return; @@ -495,9 +497,10 @@ var EditSession = function(text, mode) { }; /** + * Returns `true` if the character at the position is a soft tab. * @param {Object} position The position to check * - * Returns `true` if the character at the position is a soft tab. + * **/ this.isTabStop = function(position) { return this.$useSoftTabs && (position.column % this.$tabSize == 0); @@ -505,12 +508,13 @@ var EditSession = function(text, mode) { this.$overwrite = false; /** - * @param {Boolean} overwrite Defines wheter or not to set overwrites - * * Pass in `true` to enable overwrites in your session, or `false` to disable. * * If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event. * + * @param {Boolean} overwrite Defines wheter or not to set overwrites + * + * **/ this.setOverwrite = function(overwrite) { if (this.$overwrite == overwrite) return; @@ -534,10 +538,11 @@ var EditSession = function(text, mode) { }; /** + * Adds `className` to the `row`, to be used for CSS stylings and whatnot. * @param {Number} row The row number * @param {String} className The class to add * - * Adds `className` to the `row`, to be used for CSS stylings and whatnot. + * **/ this.addGutterDecoration = function(row, className) { if (!this.$decorations[row]) @@ -547,10 +552,11 @@ var EditSession = function(text, mode) { }; /** + * Removes `className` from the `row`. * @param {Number} row The row number * @param {String} className The class to add * - * Removes `className` from the `row`. + * **/ this.removeGutterDecoration = function(row, className) { this.$decorations[row] = (this.$decorations[row] || "").replace(" " + className, ""); @@ -566,9 +572,10 @@ var EditSession = function(text, mode) { }; /** - * @param {Array} rows An array of row indicies - * * Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event. + * @param {[Number]} rows An array of row indicies + * + * * **/ this.setBreakpoints = function(rows) { @@ -588,10 +595,11 @@ var EditSession = function(text, mode) { }; /** + * Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. * @param {Number} row A row index * @param {String} className Class of the breakpoint * - * Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. + * **/ this.setBreakpoint = function(row, className) { if (className === undefined) @@ -604,9 +612,10 @@ var EditSession = function(text, mode) { }; /** + * Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. * @param {Number} row A row index * - * Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event. + * **/ this.clearBreakpoint = function(row) { delete this.$breakpoints[row]; @@ -614,12 +623,13 @@ var EditSession = function(text, mode) { }; /** + * Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires. * @param {Range} range Define the range of the marker * @param {String} clazz Set the CSS class for the marker * @param {Function | String} type Identify the type of the marker * @param {Boolean} inFront Set to `true` to establish a front marker * - * Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires. + * * @return Number **/ this.addMarker = function(range, clazz, type, inFront) { @@ -646,10 +656,11 @@ var EditSession = function(text, mode) { }; /** + * Adds a dynamic marker to the session. * @param {Object} marker object with update method * @param {Boolean} inFront Set to `true` to establish a front marker * - * Adds a dynamic marker to the session. + * * @return Object The added marker **/ this.addDynamicMarker = function(marker, inFront) { @@ -671,9 +682,10 @@ var EditSession = function(text, mode) { }; /** + * Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted. * @param {Number} markerId A number representing a marker * - * Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted. + * * **/ this.removeMarker = function(markerId) { @@ -689,10 +701,10 @@ var EditSession = function(text, mode) { }; /** + * Returns an array containing the IDs of all the markers, either front or back. * @param {Boolean} inFront If `true`, indicates you only want front markers; `false` indicates only back markers * - * Returns an array containing the IDs of all the markers, either front or back. - * @returns Array + * @returns {Array} **/ this.getMarkers = function(inFront) { return inFront ? this.$frontMarkers : this.$backMarkers; @@ -732,9 +744,9 @@ var EditSession = function(text, mode) { * } */ /** + * Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event. * @param {Array} annotations A list of annotations * - * Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event. **/ this.setAnnotations = function(annotations) { this.$annotations = annotations; @@ -743,7 +755,7 @@ var EditSession = function(text, mode) { /** * Returns the annotations for the `EditSession`. - * @returns Object + * @returns {Object} **/ this.getAnnotations = function() { return this.$annotations || []; @@ -758,10 +770,9 @@ var EditSession = function(text, mode) { }; /** - * EditSession.$detectNewLine(text) + * If `text` contains either the newline (`\n`) or carriage-return ('\r') characters, `$autoNewLine` stores that value. * @param {String} text A block of text * - * If `text` contains either the newline (`\n`) or carriage-return ('\r') characters, `$autoNewLine` stores that value. * **/ this.$detectNewLine = function(text) { @@ -774,11 +785,11 @@ var EditSession = function(text, mode) { }; /** + * Given a starting row and column, this method returns the `Range` of the first word boundary it finds. * @param {Number} row The row to start at * @param {Number} column The column to start at * - * Given a starting row and column, this method returns the `Range` of the first word boundary it finds. - * @returns Range + * @returns {Range} **/ this.getWordRange = function(row, column) { var line = this.getLine(row); @@ -815,10 +826,10 @@ var EditSession = function(text, mode) { }; /** + * Gets the range of a word, including its right whitespace. * @param {Number} row The row number to start from * @param {Number} column The column number to start from * - * Gets the range of a word, including its right whitespace. * @return Range **/ this.getAWordRange = function(row, column) { @@ -832,9 +843,10 @@ var EditSession = function(text, mode) { }; /** + * {:Document.setNewLineMode.desc} * @param {String} newLineMode {:Document.setNewLineMode.param} * - * {:Document.setNewLineMode.desc} + * * @related Document.setNewLineMode **/ this.setNewLineMode = function(newLineMode) { @@ -842,8 +854,9 @@ var EditSession = function(text, mode) { }; /** - * + * * Returns the current new line mode. + * @returns String * @related Document.getNewLineMode **/ this.getNewLineMode = function() { @@ -853,9 +866,8 @@ var EditSession = function(text, mode) { this.$useWorker = true; /** - * @param {Boolean} useWorker Set to `true` to use a worker - * * Identifies if you want to use a worker for the `EditSession`. + * @param {Boolean} useWorker Set to `true` to use a worker * **/ this.setUseWorker = function(useWorker) { @@ -951,9 +963,8 @@ var EditSession = function(text, mode) { }; /** - * @param {TextMode} mode Set a new text mode - * * Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted. + * @param {TextMode} mode Set a new text mode * **/ this.$mode = null; @@ -1038,7 +1049,7 @@ var EditSession = function(text, mode) { /** * Returns the current text mode. - * @returns Mode The current text mode + * @returns {TextMode} The current text mode **/ this.getMode = function() { return this.$mode; @@ -1046,9 +1057,9 @@ var EditSession = function(text, mode) { this.$scrollTop = 0; /** + * This function sets the scroll top value. It also emits the `'changeScrollTop'` event. * @param {Number} scrollTop The new scroll top value * - * This function sets the scroll top value. It also emits the `'changeScrollTop'` event. **/ this.setScrollTop = function(scrollTop) { scrollTop = Math.round(Math.max(0, scrollTop)); @@ -1061,7 +1072,7 @@ var EditSession = function(text, mode) { /** * [Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop} - * @returns Number + * @returns {Number} **/ this.getScrollTop = function() { return this.$scrollTop; @@ -1082,7 +1093,7 @@ var EditSession = function(text, mode) { /** * [Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft} - * @returns Number + * @returns {Number} **/ this.getScrollLeft = function() { return this.$scrollLeft; @@ -1090,7 +1101,7 @@ var EditSession = function(text, mode) { /** * Returns the width of the screen. - * @returns Number + * @returns {Number} **/ this.getScreenWidth = function() { this.$computeWidth(); @@ -1132,10 +1143,11 @@ var EditSession = function(text, mode) { }; /** + * Returns a verbatim copy of the given line as it is in the document * @param {Number} row The row to retrieve from + * * - * Returns a verbatim copy of the given line as it is in the document - * @returns String + * @returns {String} * **/ this.getLine = function(row) { @@ -1143,11 +1155,11 @@ var EditSession = function(text, mode) { }; /** + * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. * @param {Number} firstRow The first row index to retrieve - * @param {Number} lastRow The final row index to retrieve + * @param {Number} lastRow The final row index to retrieve * - * Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`. - * @returns [String] + * @returns [String] * **/ this.getLines = function(firstRow, lastRow) { @@ -1155,29 +1167,28 @@ var EditSession = function(text, mode) { }; /** - * Returns the number of rows in the document. - * @returns Number + * Returns the number of rows in the document. + * @returns {Number} **/ this.getLength = function() { return this.doc.getLength(); }; /** + * {:Document.getTextRange.desc} * @param {Range} range The range to work with * - * {:Document.getTextRange.desc} - * @returns Range + * @returns {Range} **/ this.getTextRange = function(range) { return this.doc.getTextRange(range || this.selection.getRange()); }; /** - * @param {Number} position The position to start inserting at - * @param {String} text A chunk of text to insert - * @returns {Number} The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. - * * Inserts a block of `text` and the indicated `position`. + * @param {Number} position The position to start inserting at + * @param {String} text A chunk of text to insert + * @returns {Number} The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`. * * **/ @@ -1186,12 +1197,11 @@ var EditSession = function(text, mode) { }; /** - * @param {Range} range A specified Range to remove - * @returns {Object} The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. - * * Removes the `range` from the document. - * @related Document.remove + * @param {Range} range A specified Range to remove + * @returns {Object} The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`. * + * @related Document.remove * **/ this.remove = function(range) { @@ -1199,11 +1209,12 @@ var EditSession = function(text, mode) { }; /** - * @param {Array} deltas An array of previous changes - * @param {Boolean} dontSelect [If `true`, doesn't select the range of where the change occured]{: #dontSelect} + * Reverts previous changes to your document. + * @param {Array} deltas An array of previous changes + * @param {Boolean} dontSelect [If `true`, doesn't select the range of where the change occured]{: #dontSelect} * - * Reverts previous changes to your document. - * @returns Range + * + * @returns {Range} **/ this.undoChanges = function(deltas, dontSelect) { if (!deltas.length) @@ -1232,11 +1243,12 @@ var EditSession = function(text, mode) { }; /** - * @param {Array} deltas An array of previous changes - * @param {Boolean} dontSelect {:dontSelect} + * Re-implements a previously undone change to your document. + * @param {Array} deltas An array of previous changes + * @param {Boolean} dontSelect {:dontSelect} + * * - * Re-implements a previously undone change to your document. - * @returns Range + * @returns {Range} **/ this.redoChanges = function(deltas, dontSelect) { if (!deltas.length) @@ -1261,9 +1273,9 @@ var EditSession = function(text, mode) { }; /** - * @param {Boolean} enable If `true`, selects the range of the reinserted change + * Enables or disables highlighting of the range where an undo occured. + * @param {Boolean} enable If `true`, selects the range of the reinserted change * - * Enables or disables highlighting of the range where an undo occured. **/ this.setUndoSelect = function(enable) { this.$undoSelect = enable; @@ -1323,19 +1335,20 @@ var EditSession = function(text, mode) { return range; }; - /** related to: - * EditSession.replace(range, text) -> Object + /** + * Replaces a range in the document with the new `text`. + * * @param {Range} range A specified Range to replace * @param {String} text The new text to use as a replacement - * @returns Object An object containing the final row and column, like this: + * @returns {Object} An object containing the final row and column, like this: * ``` * {row: endRow, column: 0} * ``` * If the text and range are empty, this function returns an object containing the current `range.start` value. * If the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value. * - * Replaces a range in the document with the new `text`. - * + * + * * @related Document.replace * * @@ -1345,12 +1358,13 @@ var EditSession = function(text, mode) { }; /** - * @param {Range} fromRange The range of text you want moved within the document - * @param {Object} toPosition The location (row and column) where you want to move the text to - * @returns {Range} The new range where the text was moved to. * Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this: - * + * ```json * { row: newRowLocation, column: newColumnLocation } + * ``` + * @param {Range} fromRange The range of text you want moved within the document + * @param {Object} toPosition The location (row and column) where you want to move the text to + * @returns {Range} The new range where the text was moved to. * * * @@ -1386,13 +1400,13 @@ var EditSession = function(text, mode) { }; /** + * Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`. + * + * If `indentString` contains the `'\t'` character, it's replaced by whatever is defined by [[EditSession.getTabString `getTabString()`]]. * @param {Number} startRow Starting row * @param {Number} endRow Ending row * @param {String} indentString The indent token * - * Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`. - * - * If `indentString` contains the `'\t'` character, it's replaced by whatever is defined by [[EditSession.getTabString `getTabString()`]]. * **/ this.indentRows = function(startRow, endRow, indentString) { @@ -1402,9 +1416,9 @@ var EditSession = function(text, mode) { }; /** + * Outdents all the rows defined by the `start` and `end` properties of `range`. * @param {Range} range A range of rows * - * Outdents all the rows defined by the `start` and `end` properties of `range`. * **/ this.outdentRows = function (range) { @@ -1432,11 +1446,11 @@ var EditSession = function(text, mode) { }; /** + * Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`. * @param {Number} firstRow The starting row to move up * @param {Number} lastRow The final row to move up * @returns {Number} If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. * - * Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`. * @related Document.insertLines * **/ @@ -1449,11 +1463,12 @@ var EditSession = function(text, mode) { }; /** + * Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`. * @param {Number} firstRow The starting row to move down * @param {Number} lastRow The final row to move down * @returns {Number} If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1. * - * Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`. + * * * @related Document.insertLines **/ @@ -1466,13 +1481,11 @@ var EditSession = function(text, mode) { }; /** + * Duplicates all the text between `firstRow` and `lastRow`. * @param {Number} firstRow The starting row to duplicate * @param {Number} lastRow The final row to duplicate * @returns {Number} Returns the number of new rows added; in other words, `lastRow - firstRow + 1`. * - * Duplicates all the text between `firstRow` and `lastRow`. - * - * * **/ this.duplicateLines = function(firstRow, lastRow) { @@ -1553,9 +1566,10 @@ var EditSession = function(text, mode) { }; /** - * @param {Boolean} useWrapMode Enable (or disable) wrap mode + * Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted. + * @param {Boolean} useWrapMode Enable (or disable) wrap mode + * * - * Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted. **/ this.setUseWrapMode = function(useWrapMode) { if (useWrapMode != this.$useWrapMode) { @@ -1578,9 +1592,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getUseWrapMode() -> Boolean - * * Returns `true` if wrap mode is being used; `false` otherwise. + * @returns Boolean **/ this.getUseWrapMode = function() { return this.$useWrapMode; @@ -1591,10 +1604,11 @@ var EditSession = function(text, mode) { // in that direction. Or set both parameters to the same number to pin // the limit to that value. /** - * @param {Number} min The minimum wrap value (the left side wrap) - * @param {Number} max The maximum wrap value (the right side wrap) + * Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event. + * @param {Number} min The minimum wrap value (the left side wrap) + * @param {Number} max The maximum wrap value (the right side wrap) + * * - * Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event. **/ this.setWrapLimitRange = function(min, max) { if (this.$wrapLimitRange.min !== min || this.$wrapLimitRange.max !== max) { @@ -1607,10 +1621,11 @@ var EditSession = function(text, mode) { }; /** + * This should generally only be called by the renderer when a resize is detected. * @param {Number} desiredLimit The new wrap limit * @returns {Boolean} + * * - * This should generally only be called by the renderer when a resize is detected. * @private **/ this.adjustWrapLimit = function(desiredLimit) { @@ -1653,7 +1668,7 @@ var EditSession = function(text, mode) { * * { min: wrapLimitRange_min, max: wrapLimitRange_max } * - * @returns Object + * @returns {Object} **/ this.getWrapLimitRange = function() { // Avoid unexpected mutation by returning a copy @@ -1966,10 +1981,11 @@ var EditSession = function(text, mode) { }; /** + * Given a string, returns an array of the display characters, including tabs and spaces. * @param {String} str The string to check * @param {Number} offset The value to start at * - * Given a string, returns an array of the display characters, including tabs and spaces. + * **/ this.$getDisplayTokens = function(str, offset) { var arr = []; @@ -2003,14 +2019,15 @@ var EditSession = function(text, mode) { }; /** + * Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen. * @param {String} str The string to calculate the screen width of - * - maxScreenColumn (Number): - * - screenColumn (Number): + * @param {Number} maxScreenColumn + * @param {Number} screenColumn * @returns {[Number]} Returns an `int[]` array with two elements:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * The first position indicates the number of columns for `str` on screen.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * The second value contains the position of the document column that this function read until. * - * Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen. + * * * **/ @@ -2043,11 +2060,10 @@ var EditSession = function(text, mode) { }; /** + * Returns number of screenrows in a wrapped line. * @param {Number} row The row number to check * - * - * Returns number of screenrows in a wrapped line. - * @returns Number + * @returns {Number} **/ this.getRowLength = function(row) { if (!this.$useWrapMode || !this.$wrapData[row]) { @@ -2058,10 +2074,11 @@ var EditSession = function(text, mode) { }; /** - * @param {Number} screenRow The screen row to check + * Returns the position (on screen) for the last character in the provided screen row. + * @param {Number} screenRow The screen row to check + * * - * Returns the column position (on screen) for the last character in the provided row. - * @related EditSession.documentToScreenColumn + * @related EditSession.documentToScreenColumn **/ this.getScreenLastRowColumn = function(screenRow) { var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE); @@ -2069,9 +2086,10 @@ var EditSession = function(text, mode) { }; /** - * @param docRow {Number} - * @param docColumn {Number} + * For the given document row and column, this returns the column position of the last screen row. + * @param {Number} docRow * + * @param {Number} docColumn **/ this.getDocumentLastRowColumn = function(docRow, docColumn) { var screenRow = this.documentToScreenRow(docRow, docColumn); @@ -2079,8 +2097,10 @@ var EditSession = function(text, mode) { }; /** - * @param docRow {Number} - * @param docColumn {Number} + * For the given document row and column, this returns the document position of the last row. + * @param {Number} docRow + * @param {Number} docColumn + * * **/ this.getDocumentLastRowColumnPosition = function(docRow, docColumn) { @@ -2089,8 +2109,8 @@ var EditSession = function(text, mode) { }; /** - * EditSession.getRowSplitData(row) -> undefined | String - * + * For the given row, this returns the split data. + * @returns {String} **/ this.getRowSplitData = function(row) { if (!this.$useWrapMode) { @@ -2101,10 +2121,11 @@ var EditSession = function(text, mode) { }; /** + * The distance to the next tab stop at the specified screen column. * @param {Number} screenColumn The screen column to check * - * The distance to the next tab stop at the specified screen column. - * @returns Number + * + * @returns {Number} **/ this.getScreenTabSize = function(screenColumn) { return this.$tabSize - screenColumn % this.$tabSize; @@ -2121,11 +2142,12 @@ var EditSession = function(text, mode) { }; /** + * Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations} * @param {Number} screenRow The screen row to check * @param {Number} screenColumn The screen column to check * @returns {Object} The object returned has two properties: `row` and `column`. * - * Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations} + * * @related EditSession.documentToScreenPosition * **/ @@ -2212,11 +2234,12 @@ var EditSession = function(text, mode) { }; /** + * Converts document coordinates to screen coordinates. {:conversionConsiderations} * @param {Number} docRow The document row to check * @param {Number} docColumn The document column to check - * @returns Object} The object returned by this method has two properties: `row` and `column`. + * @returns {Object} The object returned by this method has two properties: `row` and `column`. + * * - * Converts document coordinates to screen coordinates. {:conversionConsiderations} * @related EditSession.screenToDocumentPosition * **/ @@ -2307,18 +2330,31 @@ var EditSession = function(text, mode) { }; }; - + /** + * For the given document row and column, returns the screen column. + * @param {Number} row + * @param {Number} docColumn + * + * + **/ this.documentToScreenColumn = function(row, docColumn) { return this.documentToScreenPosition(row, docColumn).column; }; + /** + * For the given document row and column, returns the screen row. + * @param {Number} docRow + * @param {Number} docColumn + * + * + **/ this.documentToScreenRow = function(docRow, docColumn) { return this.documentToScreenPosition(docRow, docColumn).row; }; /** * Returns the length of the screen. - * @returns Number + * @returns {Number} **/ this.getScreenLength = function() { var screenRows = 0; diff --git a/lib/ace/editor.js b/lib/ace/editor.js index d09a724e..19a89dc4 100644 --- a/lib/ace/editor.js +++ b/lib/ace/editor.js @@ -48,19 +48,24 @@ var CommandManager = require("./commands/command_manager").CommandManager; var defaultCommands = require("./commands/default_commands").commands; /** - * class Editor * - * The main entry point into the Ace functionality. The `Editor` manages the `EditSession` (which manages `Document`s), as well as the `VirtualRenderer`, which draws everything to the screen. Event sessions dealing with the mouse and keyboard are bubbled up from `Document` to the `Editor`, which decides what to do with them. * + * The main entry point into the Ace functionality. + * + * The `Editor` manages the `[[EditSession]]` (which manages `[[Document]]`s), as well as the `[[VirtualRenderer]]`, which draws everything to the screen. + * + * Event sessions dealing with the mouse and keyboard are bubbled up from `Document` to the `Editor`, which decides what to do with them. + * @class Editor **/ /** - * new Editor(renderer, session) - * - renderer (VirtualRenderer): Associated `VirtualRenderer` that draws everything - * - session (EditSession): The `EditSession` to refer to - * * Creates a new `Editor` object. * + * @param {VirtualRenderer} renderer Associated `VirtualRenderer` that draws everything + * @param {EditSession} session The `EditSession` to refer to + * + * + * @constructor **/ var Editor = function(renderer, session) { var container = renderer.getContainerElement(); @@ -89,34 +94,38 @@ var Editor = function(renderer, session) { oop.implement(this, EventEmitter); /** - * Editor.setKeyboardHandler(keyboardHandler) + * Sets a new key handler, such as "vim" or "windows". + * @param {String} keyboardHandler The new key handler + * * - * Sets a new keyboard handler. **/ this.setKeyboardHandler = function(keyboardHandler) { this.keyBinding.setKeyboardHandler(keyboardHandler); }; - /** related to: KeyBinding - * Editor.getKeyboardHandler() -> String + /** + * Returns the keyboard handler, such as "vim" or "windows". + * + * @returns {String} * - * Returns the keyboard handler. **/ this.getKeyboardHandler = function() { return this.keyBinding.getKeyboardHandler(); }; + /** - * Editor.setSession(session) - * - session (EditSession): The new session to use + * Emitted whenever the [[EditSession]] changes. + * @event changeSession + * @param {Object} e An object with two properties, `oldSession` and `session`, that represent the old and new [[EditSession]]s. + * * - * Sets a new editsession to use. This method also emits the `'changeSession'` event. **/ /** - * Editor@changeSession(e) - * - e (Object): An object with two properties, `oldSession` and `session`, that represent the old and new [[EditSession]]s. + * Sets a new editsession to use. This method also emits the `'changeSession'` event. + * @param {EditSession} session The new session to use + * * - * Emitted whenever the [[EditSession]] changes. **/ this.setSession = function(session) { if (this.session == session) @@ -218,20 +227,22 @@ var Editor = function(renderer, session) { }; /** - * Editor.getSession() -> EditSession - * * Returns the current session being used. + * @returns {EditSession} **/ this.getSession = function() { return this.session; }; - /** related to: Document.setValue - * Editor.setValue(val [,cursorPos]) -> String - * - val (String): The new value to set for the document - * - cursorPos (Number): Where to set the new value. `undefined` or 0 is selectAll, -1 is at the document start, and 1 is at the end - * + /** * Sets the current document to `val`. + * @param {String} val The new value to set for the document + * @param {Number} cursorPos Where to set the new value. `undefined` or 0 is selectAll, -1 is at the document start, and 1 is at the end + * + * + * + * @returns {String} The current document value + * @related Document.setValue **/ this.setValue = function(val, cursorPos) { this.session.doc.setValue(val); @@ -246,87 +257,86 @@ var Editor = function(renderer, session) { return val; }; - /** related to: EditSession.getValue - * Editor.getValue() -> String - * + /** * Returns the current session's content. + * + * @returns {String} + * @related EditSession.getValue **/ this.getValue = function() { return this.session.getValue(); }; /** - * Editor.getSelection() -> String * * Returns the currently highlighted selection. + * @returns {String} The highlighted selection **/ this.getSelection = function() { return this.selection; }; - /** related to: VirtualRenderer.onResize - * Editor.resize(force) - * - force (Boolean): If `true`, recomputes the size, even if the height and width haven't changed - * + /** * {:VirtualRenderer.onResize} + * @param {Boolean} force If `true`, recomputes the size, even if the height and width haven't changed + * + * + * @related VirtualRenderer.onResize **/ this.resize = function(force) { this.renderer.onResize(force); }; /** - * Editor.setTheme(theme) - * - theme (String): The path to a theme - * * {:VirtualRenderer.setTheme} + * @param {String} theme The path to a theme + * + * **/ this.setTheme = function(theme) { this.renderer.setTheme(theme); }; - /** related to: VirtualRenderer.getTheme - * Editor.getTheme() -> String - * + /** * {:VirtualRenderer.getTheme} + * + * @returns {String} The set theme + * @related VirtualRenderer.getTheme **/ this.getTheme = function() { return this.renderer.getTheme(); }; - /** related to: VirtualRenderer.setStyle - * Editor.setStyle(style) - * - style (String): A class name - * + /** * {:VirtualRenderer.setStyle} + * @param {String} style A class name + * + * + * @related VirtualRenderer.setStyle **/ this.setStyle = function(style) { this.renderer.setStyle(style); }; - /** related to: VirtualRenderer.unsetStyle - * Editor.unsetStyle(style) - * + /** * {:VirtualRenderer.unsetStyle} + * @related VirtualRenderer.unsetStyle **/ this.unsetStyle = function(style) { this.renderer.unsetStyle(style); }; /** - * Editor.setFontSize(size) - * - size (Number): A font size - * * Set a new font size (in pixels) for the editor text. + * @param {Number} size A font size + * + * **/ this.setFontSize = function(size) { this.container.style.fontSize = size; this.renderer.updateFontSize(); }; - /** internal, hide - * Editor.$highlightBrackets() - * - **/ this.$highlightBrackets = function() { if (this.session.$bracketHighlight) { this.session.removeMarker(this.session.$bracketHighlight); @@ -352,7 +362,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.focus() * * Brings the current `textInput` into focus. **/ @@ -368,16 +377,14 @@ var Editor = function(renderer, session) { }; /** - * Editor.isFocused() -> Boolean - * - * Returns true if the current `textInput` is in focus. + * Returns `true` if the current `textInput` is in focus. + * @return Boolean **/ this.isFocused = function() { return this.textInput.isFocused(); }; /** - * Editor.blur() * * Blurs the current `textInput`. **/ @@ -386,9 +393,10 @@ var Editor = function(renderer, session) { }; /** - * Editor@focus() - * * Emitted once the editor comes into focus. + * @event focus + * + * **/ this.onFocus = function() { if (this.$isFocused) @@ -400,9 +408,10 @@ var Editor = function(renderer, session) { }; /** - * Editor@blur() - * * Emitted once the editor has been blurred. + * @event blur + * + * **/ this.onBlur = function() { if (!this.$isFocused) @@ -418,10 +427,11 @@ var Editor = function(renderer, session) { }; /** - * Editor@change(e) - * - e (Object): Contains a single property, `data`, which has the delta of changes - * * Emitted whenever the document is changed. + * @event change + * @param {Object} e Contains a single property, `data`, which has the delta of changes + * + * * **/ this.onDocumentChange = function(e) { @@ -456,8 +466,6 @@ var Editor = function(renderer, session) { }; /** - * Editor@changeSelection() - * * Emitted when the selection changes. * **/ @@ -473,11 +481,6 @@ var Editor = function(renderer, session) { this._emit("changeSelection"); }; - /** internal, hide - * Editor.$updateHighlightActiveLine() - * - * - **/ this.$updateHighlightActiveLine = function() { var session = this.getSession(); @@ -489,7 +492,7 @@ var Editor = function(renderer, session) { if (session.$highlightLineMarker && !highlight) { session.removeMarker(session.$highlightLineMarker.id); - session.$highlightLineMarker = null; + session.$highlightLineMarker = null; } else if (!session.$highlightLineMarker && highlight) { session.$highlightLineMarker = session.highlightLines(highlight.row, highlight.row, "ace_active-line"); } else if (highlight) { @@ -595,16 +598,18 @@ var Editor = function(renderer, session) { }; /** - * Editor.getCopyText() -> String + * Emitted when text is copied. + * @event copy + * @param {String} text The copied text + * * - * Returns the string of text currently highlighted. **/ /** - * Editor@copy(text) - * - text (String): The copied text * - * Emitted when text is copied. + * Returns the string of text currently highlighted. + * @returns {String} **/ + this.getCopyText = function() { var text = ""; if (!this.selection.isEmpty()) @@ -615,8 +620,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.onCopy() - * * Called whenever a text "copy" happens. **/ this.onCopy = function() { @@ -624,25 +627,24 @@ var Editor = function(renderer, session) { }; /** - * Editor.onCut() - * - * called whenever a text "cut" happens. + * Called whenever a text "cut" happens. **/ this.onCut = function() { this.commands.exec("cut", this); }; /** - * Editor.onPaste(text) - * - text (String): The pasted text + * Emitted when text is pasted. + * @event paste + * @param {String} text The pasted text + * * - * Called whenever a text "paste" happens. **/ /** - * Editor@paste(text) - * - text (String): The pasted text + * Called whenever a text "paste" happens. + * @param {String} text The pasted text + * * - * Emitted when text is pasted. **/ this.onPaste = function(text) { // todo this should change when paste becomes a command @@ -658,10 +660,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.insert(text) - * - text (String): The new text to add - * * Inserts `text` into wherever the cursor is pointing. + * @param {String} text The new text to add + * + * **/ this.insert = function(text) { var session = this.session; @@ -761,40 +763,39 @@ var Editor = function(renderer, session) { this.keyBinding.onCommandKey(e, hashId, keyCode); }; - /** related to: EditSession.setOverwrite - * Editor.setOverwrite(overwrite) - * - overwrite (Boolean): Defines wheter or not to set overwrites - * + /** * Pass in `true` to enable overwrites in your session, or `false` to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event. + * @param {Boolean} overwrite Defines wheter or not to set overwrites + * * + * @related EditSession.setOverwrite **/ this.setOverwrite = function(overwrite) { this.session.setOverwrite(overwrite); }; - /** related to: EditSession.getOverwrite - * Editor.getOverwrite() -> Boolean - * + /** * Returns `true` if overwrites are enabled; `false` otherwise. + * @returns {Boolean} + * @related EditSession.getOverwrite **/ this.getOverwrite = function() { return this.session.getOverwrite(); }; - /** related to: EditSession.toggleOverwrite - * Editor.toggleOverwrite() - * + /** * Sets the value of overwrite to the opposite of whatever it currently is. + * @related EditSession.toggleOverwrite **/ this.toggleOverwrite = function() { this.session.toggleOverwrite(); }; /** - * Editor.setScrollSpeed(speed) - * - speed (Number): A value indicating the new speed - * * Sets how fast the mouse scrolling should do. + * @param {Number} speed A value indicating the new speed + * + * * **/ this.setScrollSpeed = function(speed) { @@ -802,19 +803,18 @@ var Editor = function(renderer, session) { }; /** - * Editor.getScrollSpeed() -> Number - * * Returns the value indicating how fast the mouse scroll speed is. + * @returns {Number} **/ this.getScrollSpeed = function() { return this.$mouseHandler.getScrollSpeed(); }; /** - * Editor.setDragDelay(dragDelay) - * - dragDelay (Number): A value indicating the new delay - * * Sets the delay (in milliseconds) of the mouse drag. + * @param {Number} dragDelay A value indicating the new delay + * + * * **/ this.setDragDelay = function(dragDelay) { @@ -822,27 +822,30 @@ var Editor = function(renderer, session) { }; /** - * Editor.getDragDelay() -> Number - * * Returns the current mouse drag delay. + * @returns {Number} **/ this.getDragDelay = function() { return this.$mouseHandler.getDragDelay(); }; this.$selectionStyle = "line"; + /** - * Editor.setSelectionStyle(style) - * - style (String): The new selection style + * Emitted when the selection style changes, via [[Editor.setSelectionStyle]]. + * @event changeSelectionStyle + * @param {Object} data Contains one property, `data`, which indicates the new selection style + * * - * Indicates how selections should occur. By default, selections are set to "line". This function also emits the `'changeSelectionStyle'` event. * **/ /** - * Editor@changeSelectionStyle(data) - * - data (Object): Contains one property, `data`, which indicates the new selection style + * Indicates how selections should occur. + * + * By default, selections are set to "line". This function also emits the `'changeSelectionStyle'` event. + * + * @param {String} style The new selection style * - * Emitted when the selection style changes, via [[Editor.setSelectionStyle]]. * **/ this.setSelectionStyle = function(style) { @@ -854,9 +857,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getSelectionStyle() -> String - * * Returns the current selection style. + * @returns {String} **/ this.getSelectionStyle = function() { return this.$selectionStyle; @@ -865,10 +867,10 @@ var Editor = function(renderer, session) { this.$highlightActiveLine = true; /** - * Editor.setHighlightActiveLine(shouldHighlight) - * - shouldHighlight (Boolean): Set to `true` to highlight the current line - * * Determines whether or not the current line should be highlighted. + * @param {Boolean} shouldHighlight Set to `true` to highlight the current line + * + * * **/ this.setHighlightActiveLine = function(shouldHighlight) { @@ -880,9 +882,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getHighlightActiveLine() -> Boolean - * * Returns `true` if current lines are always highlighted. + * @return Boolean **/ this.getHighlightActiveLine = function() { return this.$highlightActiveLine; @@ -903,10 +904,10 @@ var Editor = function(renderer, session) { this.$highlightSelectedWord = true; /** - * Editor.setHighlightSelectedWord(shouldHighlight) - * - shouldHighlight (Boolean): Set to `true` to highlight the currently selected word - * * Determines if the currently selected word should be highlighted. + * @param {Boolean} shouldHighlight Set to `true` to highlight the currently selected word + * + * **/ this.setHighlightSelectedWord = function(shouldHighlight) { if (this.$highlightSelectedWord == shouldHighlight) @@ -917,9 +918,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getHighlightSelectedWord() -> Boolean - * * Returns `true` if currently highlighted words are to be highlighted. + * @returns {Boolean} **/ this.getHighlightSelectedWord = function() { return this.$highlightSelectedWord; @@ -934,19 +934,18 @@ var Editor = function(renderer, session) { }; /** - * Editor.setShowInvisibles(showInvisibles) - * - showInvisibles (Boolean): Specifies whether or not to show invisible characters - * * If `showInvisibiles` is set to `true`, invisible characters—like spaces or new lines—are show in the editor. + * @param {Boolean} showInvisibles Specifies whether or not to show invisible characters + * + * **/ this.setShowInvisibles = function(showInvisibles) { this.renderer.setShowInvisibles(showInvisibles); }; /** - * Editor.getShowInvisibles() -> Boolean - * * Returns `true` if invisible characters are being shown. + * @returns {Boolean} **/ this.getShowInvisibles = function() { return this.renderer.getShowInvisibles(); @@ -961,29 +960,28 @@ var Editor = function(renderer, session) { }; /** - * Editor.setShowPrintMargin(showPrintMargin) - * - showPrintMargin (Boolean): Specifies whether or not to show the print margin - * * If `showPrintMargin` is set to `true`, the print margin is shown in the editor. + * @param {Boolean} showPrintMargin Specifies whether or not to show the print margin + * + * **/ this.setShowPrintMargin = function(showPrintMargin) { this.renderer.setShowPrintMargin(showPrintMargin); }; /** - * Editor.getShowPrintMargin() -> Boolean - * * Returns `true` if the print margin is being shown. + * @returns {Boolean} **/ this.getShowPrintMargin = function() { return this.renderer.getShowPrintMargin(); }; /** - * Editor.setPrintMarginColumn(showPrintMargin) - * - showPrintMargin (Number): Specifies the new print margin - * * Sets the column defining where the print margin should be. + * @param {Number} showPrintMargin Specifies the new print margin + * + * * **/ this.setPrintMarginColumn = function(showPrintMargin) { @@ -991,9 +989,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getPrintMarginColumn() -> Number - * * Returns the column number of where the print margin is. + * @returns {Number} **/ this.getPrintMarginColumn = function() { return this.renderer.getPrintMarginColumn(); @@ -1001,19 +998,18 @@ var Editor = function(renderer, session) { this.$readOnly = false; /** - * Editor.setReadOnly(readOnly) - * - readOnly (Boolean): Specifies whether the editor can be modified or not - * * If `readOnly` is true, then the editor is set to read-only mode, and none of the content can change. + * @param {Boolean} readOnly Specifies whether the editor can be modified or not + * + * **/ this.setReadOnly = function(readOnly) { this.$readOnly = readOnly; }; /** - * Editor.getReadOnly() -> Boolean - * * Returns `true` if the editor is set to read-only mode. + * @returns {Boolean} **/ this.getReadOnly = function() { return this.$readOnly; @@ -1022,21 +1018,20 @@ var Editor = function(renderer, session) { this.$modeBehaviours = true; /** - * Editor.setBehavioursEnabled(enabled) - * - enabled (Boolean): Enables or disables behaviors + * Specifies whether to use behaviors or not. ["Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef} + * @param {Boolean} enabled Enables or disables behaviors * - * Specifies whether to use behaviors or not. - * See [[Editor.setWrapBehavioursEnabled]]. - * ["Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef} + * + * Specifies whether to use behaviors or not. ["Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef} **/ this.setBehavioursEnabled = function (enabled) { this.$modeBehaviours = enabled; }; /** - * Editor.getBehavioursEnabled() -> Boolean - * * Returns `true` if the behaviors are currently enabled. {:BehaviorsDef} + * + * @returns {Boolean} **/ this.getBehavioursEnabled = function () { return this.$modeBehaviours; @@ -1065,10 +1060,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.setShowFoldWidgets(show) - * - show (Boolean): Specifies whether the fold widgets are shown - * * Indicates whether the fold widgets are shown or not. + * @param {Boolean} show Specifies whether the fold widgets are shown + * + * **/ this.setShowFoldWidgets = function(show) { var gutter = this.renderer.$gutterLayer; @@ -1081,9 +1076,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getShowFoldWidgets() -> Boolean - * * Returns `true` if the fold widgets are shown. + * @return Boolean **/ this.getShowFoldWidgets = function() { return this.renderer.$gutterLayer.getShowFoldWidgets(); @@ -1098,10 +1092,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.remove(dir) - * - dir (String): The direction of the deletion to occur, either "left" or "right" - * * Removes words of text from the editor. A "word" is defined as a string of characters bookended by whitespace. + * @param {String} dir The direction of the deletion to occur, either "left" or "right" + * + * * **/ this.remove = function(dir) { @@ -1126,8 +1120,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.removeWordRight() - * * Removes the word directly to the right of the current selection. **/ this.removeWordRight = function() { @@ -1139,8 +1131,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.removeWordLeft() - * * Removes the word directly to the left of the current selection. **/ this.removeWordLeft = function() { @@ -1152,8 +1142,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.removeToLineStart() - * * Removes all the words to the left of the current selection, until the start of the line. **/ this.removeToLineStart = function() { @@ -1165,8 +1153,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.removeToLineEnd() - * * Removes all the words to the right of the current selection, until the end of the line. **/ this.removeToLineEnd = function() { @@ -1184,8 +1170,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.splitLine() - * * Splits the line at the current selection (by inserting an `'\n'`). **/ this.splitLine = function() { @@ -1200,8 +1184,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.transposeLetters() - * * Transposes current line. **/ this.transposeLetters = function() { @@ -1228,8 +1210,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.toLowerCase() - * * Converts the current selection entirely into lowercase. **/ this.toLowerCase = function() { @@ -1245,8 +1225,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.toUpperCase() - * * Converts the current selection entirely into uppercase. **/ this.toUpperCase = function() { @@ -1261,10 +1239,10 @@ var Editor = function(renderer, session) { this.selection.setSelectionRange(originalRange); }; - /** related to: EditSession.indentRows - * Editor.indent() - * + /** * Indents the current line. + * + * @related EditSession.indentRows **/ this.indent = function() { var session = this.session; @@ -1289,10 +1267,9 @@ var Editor = function(renderer, session) { } }; - /** related to: EditSession.outdentRows - * Editor.blockOutdent() - * + /** * Outdents the current line. + * @related EditSession.outdentRows **/ this.blockOutdent = function() { var selection = this.session.getSelection(); @@ -1325,7 +1302,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.toggleCommentLines() * * Given the currently selected range, this function either comments all the lines, or uncomments all of them. **/ @@ -1336,9 +1312,8 @@ var Editor = function(renderer, session) { }; /** - * Editor.getNumberAt() -> Number - * * Works like [[Editor.getTokenAt]], except it returns a number. + * @returns Number **/ this.getNumberAt = function( row, column ) { var _numberRx = /[\-]?[0-9]+(?:\.[0-9]+)?/g @@ -1359,9 +1334,10 @@ var Editor = function(renderer, session) { } return null; }; + /** * Editor.modifyNumber(amount) - * - amount (Number): The value to change the numeral by (can be negative to decrease value) + * @param [Number] amount The value to change the numeral by (can be negative to decrease value) * * If the character before the cursor is a number, this functions changes its value by `amount`. **/ @@ -1406,11 +1382,10 @@ var Editor = function(renderer, session) { } } }; - - /** related to: EditSession.remove - * Editor.removeLines() - * + + /** * Removes all the lines in the current selection + * @related EditSession.remove **/ this.removeLines = function() { var rows = this.$getSelectedRows(); @@ -1444,14 +1419,11 @@ var Editor = function(renderer, session) { } }; - /** related to: EditSession.moveLinesDown - * Editor.moveLinesDown() -> Number - * + (Number): On success, it returns -1. - * + /** * Shifts all the selected lines down one row. * - * - * + * @returns {Number} On success, it returns -1. + * @related EditSession.moveLinesUp **/ this.moveLinesDown = function() { this.$moveLines(function(firstRow, lastRow) { @@ -1459,13 +1431,10 @@ var Editor = function(renderer, session) { }); }; - /** related to: EditSession.moveLinesUp - * Editor.moveLinesUp() -> Number - * + (Number): On success, it returns -1. - * + /** * Shifts all the selected lines up one row. - * - * + * @returns {Number} On success, it returns -1. + * @related EditSession.moveLinesDown **/ this.moveLinesUp = function() { this.$moveLines(function(firstRow, lastRow) { @@ -1473,17 +1442,16 @@ var Editor = function(renderer, session) { }); }; - /** related to: EditSession.moveText - * Editor.moveText(fromRange, toPosition) -> Range - * - fromRange (Range): The range of text you want moved within the document - * - toPosition (Object): The location (row and column) where you want to move the text to - * + (Range): The new range where the text was moved to. - * + /** * Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this: - * + * ```json * { row: newRowLocation, column: newColumnLocation } + * ``` + * @param {Range} fromRange The range of text you want moved within the document + * @param {Object} toPosition The location (row and column) where you want to move the text to * - * + * @returns {Range} The new range where the text was moved to. + * @related EditSession.moveText **/ this.moveText = function(range, toPosition) { if (this.$readOnly) @@ -1492,12 +1460,9 @@ var Editor = function(renderer, session) { return this.session.moveText(range, toPosition); }; - /** related to: EditSession.duplicateLines - * Editor.copyLinesUp() -> Number - * + (Number): On success, returns 0. - * + /** * Copies all the selected lines up one row. - * + * @returns {Number} On success, returns 0. * **/ this.copyLinesUp = function() { @@ -1507,13 +1472,10 @@ var Editor = function(renderer, session) { }); }; - /** related to: EditSession.duplicateLines - * Editor.copyLinesDown() -> Number - * + (Number): On success, returns the number of new rows added; in other words, `lastRow - firstRow + 1`. - * + /** * Copies all the selected lines down one row. - * - * + * @returns {Number} On success, returns the number of new rows added; in other words, `lastRow - firstRow + 1`. + * @related EditSession.duplicateLines * **/ this.copyLinesDown = function() { @@ -1524,10 +1486,9 @@ var Editor = function(renderer, session) { /** - * Editor.$moveLines(mover) - * - mover (Function): A method to call on each selected row - * * Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them. + * @param {Function} mover A method to call on each selected row + * * **/ this.$moveLines = function(mover) { @@ -1554,12 +1515,11 @@ var Editor = function(renderer, session) { }; /** - * Editor.$getSelectedRows() -> Object - * * Returns an object indicating the currently selected rows. The object looks like this: - * + * ```json * { first: range.start.row, last: range.end.row } - * + * ``` + * @returns {Object} **/ this.$getSelectedRows = function() { var range = this.getSelectionRange().collapseRows(); @@ -1582,48 +1542,48 @@ var Editor = function(renderer, session) { this.renderer.hideComposition(); }; - /** related to: VirtualRenderer.getFirstVisibleRow - * Editor.getFirstVisibleRow() -> Number - * + /** * {:VirtualRenderer.getFirstVisibleRow} + * @returns {Number} + * @related VirtualRenderer.getFirstVisibleRow **/ this.getFirstVisibleRow = function() { return this.renderer.getFirstVisibleRow(); }; - /** related to: VirtualRenderer.getLastVisibleRow - * Editor.getLastVisibleRow() -> Number - * + /** * {:VirtualRenderer.getLastVisibleRow} + * @returns {Number} + * @related VirtualRenderer.getLastVisibleRow **/ this.getLastVisibleRow = function() { return this.renderer.getLastVisibleRow(); }; /** - * Editor.isRowVisible(row) -> Boolean - * - row (Number): The row to check - * * Indicates if the row is currently visible on the screen. + * @param {Number} row The row to check + * + * @returns {Boolean} **/ this.isRowVisible = function(row) { return (row >= this.getFirstVisibleRow() && row <= this.getLastVisibleRow()); }; /** - * Editor.isRowFullyVisible(row) -> Boolean - * - row (Number): The row to check - * * Indicates if the entire row is currently visible on the screen. + * @param {Number} row The row to check + * + * + * @returns {Boolean} **/ this.isRowFullyVisible = function(row) { return (row >= this.renderer.getFirstFullyVisibleRow() && row <= this.renderer.getLastFullyVisibleRow()); }; /** - * Editor.$getVisibleRowCount() -> Number - * * Returns the number of currently visibile rows. + * @returns {Number} **/ this.$getVisibleRowCount = function() { return this.renderer.getScrollBottomRow() - this.renderer.getScrollTopRow() + 1; @@ -1655,8 +1615,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.selectPageDown() - * * Selects the text from the current position of the document until where a "page down" finishes. **/ this.selectPageDown = function() { @@ -1664,8 +1622,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.selectPageUp() - * * Selects the text from the current position of the document until where a "page up" finishes. **/ this.selectPageUp = function() { @@ -1673,8 +1629,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.gotoPageDown() - * * Shifts the document to wherever "page down" is, as well as moving the cursor position. **/ this.gotoPageDown = function() { @@ -1682,8 +1636,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.gotoPageUp() - * * Shifts the document to wherever "page up" is, as well as moving the cursor position. **/ this.gotoPageUp = function() { @@ -1691,8 +1643,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.scrollPageDown() - * * Scrolls the document to wherever "page down" is, without changing the cursor position. **/ this.scrollPageDown = function() { @@ -1700,41 +1650,35 @@ var Editor = function(renderer, session) { }; /** - * Editor.scrollPageUp() - * * Scrolls the document to wherever "page up" is, without changing the cursor position. **/ this.scrollPageUp = function() { this.$moveByPage(-1); }; - /** related to: VirtualRenderer.scrollToRow - * Editor.scrollToRow(row) - * - row (Number): The row to move to - * + /** * Moves the editor to the specified row. - * + * @related VirtualRenderer.scrollToRow **/ this.scrollToRow = function(row) { this.renderer.scrollToRow(row); }; - /** related to: VirtualRenderer.scrollToLine - * Editor.scrollToLine(line, center, animate, callback()) - * - line (Number): The line to scroll to - * - center (Boolean): If `true` - * - animate (Boolean): If `true` animates scrolling - * - callback (Function): Function to be called when the animation has finished + /** + * Scrolls to a line. If `center` is `true`, it puts the line in middle of screen (or attempts to). + * @param {Number} line The line to scroll to + * @param {Boolean} center If `true` + * @param {Boolean} animate If `true` animates scrolling + * @param {Function} callback Function to be called when the animation has finished * - * TODO scrolls a to line, if center == true, puts line in middle of screen or attempts to) + * + * @related VirtualRenderer.scrollToLine **/ this.scrollToLine = function(line, center, animate, callback) { this.renderer.scrollToLine(line, center, animate, callback); }; /** - * Editor.centerSelection() - * * Attempts to center the current selection on the screen. **/ this.centerSelection = function() { @@ -1746,43 +1690,41 @@ var Editor = function(renderer, session) { this.renderer.alignCursor(pos, 0.5); }; - /** related to: Selection.getCursor - * Editor.getCursorPosition() -> Object - * + (Object): This returns an object that looks something like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * ```{ row: currRow, column: currCol }``` - * + /** * Gets the current position of the cursor. + * @returns {Object} An object that looks something like this: + * ```json + * { row: currRow, column: currCol } + * ``` * - * - * + * @related Selection.getCursor **/ this.getCursorPosition = function() { return this.selection.getCursor(); }; - /** related to: EditSession.documentToScreenPosition - * Editor.getCursorPositionScreen() -> Number - * + /** * Returns the screen position of the cursor. + * @returns {Number} + * @related EditSession.documentToScreenPosition **/ this.getCursorPositionScreen = function() { return this.session.documentToScreenPosition(this.getCursorPosition()); }; - /** related to: Selection.getRange - * Editor.getSelectionRange() -> Range - * + /** * {:Selection.getRange} + * @returns {Range} + * @related Selection.getRange **/ this.getSelectionRange = function() { return this.selection.getRange(); }; - /** related to: Selection.selectAll - * Editor.selectAll() - * + /** * Selects all the text in editor. + * @related Selection.selectAll **/ this.selectAll = function() { this.$blockScrolling += 1; @@ -1790,41 +1732,38 @@ var Editor = function(renderer, session) { this.$blockScrolling -= 1; }; - /** related to: Selection.clearSelection - * Editor.clearSelection() - * + /** * {:Selection.clearSelection} + * @related Selection.clearSelection **/ this.clearSelection = function() { this.selection.clearSelection(); }; - /** related to: Selection.moveCursorTo - * Editor.moveCursorTo(row, column) - * - row (Number): The new row number - * - column (Number): The new column number - * + /** * Moves the cursor to the specified row and column. Note that this does not de-select the current selection. + * @param {Number} row The new row number + * @param {Number} column The new column number * + * + * @related Selection.moveCursorTo **/ this.moveCursorTo = function(row, column) { this.selection.moveCursorTo(row, column); }; - /** related to: Selection.moveCursorToPosition - * Editor.moveCursorToPosition(pos) - * - pos (Object): An object with two properties, row and column - * + /** * Moves the cursor to the position indicated by `pos.row` and `pos.column`. + * @param {Object} pos An object with two properties, row and column + * * + * @related Selection.moveCursorToPosition **/ this.moveCursorToPosition = function(pos) { this.selection.moveCursorToPosition(pos); }; /** - * Editor.jumpToMatching() - * * Moves the cursor's row and column to the next matching bracket. * **/ @@ -1860,12 +1799,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.gotoLine(lineNumber, column, animate) - * - lineNumber (Number): The line number to go to - * - column (Number): A column number to go to - * - animate (Boolean): If `true` animates scolling - * * Moves the cursor to the specified line number, and also into the indiciated column. + * @param {Number} lineNumber The line number to go to + * @param {Number} column A column number to go to + * @param {Boolean} animate If `true` animates scolling * **/ this.gotoLine = function(lineNumber, column, animate) { @@ -1880,13 +1817,13 @@ var Editor = function(renderer, session) { this.scrollToLine(lineNumber - 1, true, animate); }; - /** related to: Editor.moveCursorTo - * Editor.navigateTo(row, column) - * - row (Number): The new row number - * - column (Number): The new column number - * + /** * Moves the cursor to the specified row and column. Note that this does de-select the current selection. + * @param {Number} row The new row number + * @param {Number} column The new column number * + * + * @related Editor.moveCursorTo **/ this.navigateTo = function(row, column) { this.clearSelection(); @@ -1894,10 +1831,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateUp(times) - * - times (Number): The number of times to change navigation - * * Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection. + * @param {Number} times The number of times to change navigation + * + * **/ this.navigateUp = function(times) { this.selection.clearSelection(); @@ -1906,10 +1843,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateDown(times) - * - times (Number): The number of times to change navigation - * * Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection. + * @param {Number} times The number of times to change navigation + * + * **/ this.navigateDown = function(times) { this.selection.clearSelection(); @@ -1918,10 +1855,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateLeft(times) - * - times (Number): The number of times to change navigation - * * Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection. + * @param {Number} times The number of times to change navigation + * + * **/ this.navigateLeft = function(times) { if (!this.selection.isEmpty()) { @@ -1938,10 +1875,10 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateRight(times) - * - times (Number): The number of times to change navigation - * * Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection. + * @param {Number} times The number of times to change navigation + * + * **/ this.navigateRight = function(times) { if (!this.selection.isEmpty()) { @@ -1958,7 +1895,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateLineStart() * * Moves the cursor to the start of the current line. Note that this does de-select the current selection. **/ @@ -1968,7 +1904,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateLineEnd() * * Moves the cursor to the end of the current line. Note that this does de-select the current selection. **/ @@ -1978,7 +1913,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateFileEnd() * * Moves the cursor to the end of the current file. Note that this does de-select the current selection. **/ @@ -1990,7 +1924,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateFileStart() * * Moves the cursor to the start of the current file. Note that this does de-select the current selection. **/ @@ -2002,7 +1935,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateWordRight() * * Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection. **/ @@ -2012,7 +1944,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.navigateWordLeft() * * Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection. **/ @@ -2022,11 +1953,11 @@ var Editor = function(renderer, session) { }; /** - * Editor.replace(replacement, options) - * - replacement (String): The text to replace with - * - options (Object): The [[Search `Search`]] options to use - * * Replaces the first occurance of `options.needle` with the value in `replacement`. + * @param {String} replacement The text to replace with + * @param {Object} options The [[Search `Search`]] options to use + * + * **/ this.replace = function(replacement, options) { if (options) @@ -2049,11 +1980,11 @@ var Editor = function(renderer, session) { }; /** - * Editor.replaceAll(replacement, options) - * - replacement (String): The text to replace with - * - options (Object): The [[Search `Search`]] options to use - * * Replaces all occurances of `options.needle` with the value in `replacement`. + * @param {String} replacement The text to replace with + * @param {Object} options The [[Search `Search`]] options to use + * + * **/ this.replaceAll = function(replacement, options) { if (options) { @@ -2094,22 +2025,23 @@ var Editor = function(renderer, session) { } }; - /** related to: Search.getOptions - * Editor.getLastSearchOptions() -> Object - * + /** * {:Search.getOptions} For more information on `options`, see [[Search `Search`]]. + * @related Search.getOptions + * @returns {Object} **/ this.getLastSearchOptions = function() { return this.$search.getOptions(); }; - /** related to: Search.find - * Editor.find(needle, options, animate) - * - needle (String): The text to search for (optional) - * - options (Object): An object defining various search properties - * - animate (Boolean): If `true` animate scrolling - * + /** * Attempts to find `needle` within the document. For more information on `options`, see [[Search `Search`]]. + * @param {String} needle The text to search for (optional) + * @param {Object} options An object defining various search properties + * @param {Boolean} animate If `true` animate scrolling + * + * + * @related Search.find **/ this.find = function(needle, options, animate) { if (!options) @@ -2150,23 +2082,25 @@ var Editor = function(renderer, session) { this.selection.setRange(range); }; - /** related to: Editor.find - * Editor.findNext(options, animate) - * - options (Object): search options - * - animate (Boolean): If `true` animate scrolling - * + /** * Performs another search for `needle` in the document. For more information on `options`, see [[Search `Search`]]. + * @param {Object} options search options + * @param {Boolean} animate If `true` animate scrolling + * + * + * @related Editor.find **/ this.findNext = function(options, animate) { this.find({skipCurrent: true, backwards: false}, options, animate); }; - /** related to: Editor.find - * Editor.findPrevious(options, animate) - * - options (Object): search options - * - animate (Boolean): If `true` animate scrolling - * + /** * Performs a search for `needle` backwards. For more information on `options`, see [[Search `Search`]]. + * @param {Object} options search options + * @param {Boolean} animate If `true` animate scrolling + * + * + * @related Editor.find **/ this.findPrevious = function(options, animate) { this.find(options, {skipCurrent: true, backwards: true}, animate); @@ -2184,10 +2118,9 @@ var Editor = function(renderer, session) { this.renderer.animateScrolling(scrollTop); }; - /** related to: UndoManager.undo - * Editor.undo() - * + /** * {:UndoManager.undo} + * @related UndoManager.undo **/ this.undo = function() { this.$blockScrolling++; @@ -2196,10 +2129,9 @@ var Editor = function(renderer, session) { this.renderer.scrollCursorIntoView(null, 0.5); }; - /** related to: UndoManager.redo - * Editor.redo() - * + /** * {:UndoManager.redo} + * @related UndoManager.redo **/ this.redo = function() { this.$blockScrolling++; @@ -2209,7 +2141,6 @@ var Editor = function(renderer, session) { }; /** - * Editor.destroy() * * Cleans up the entire editor. **/ @@ -2221,4 +2152,4 @@ var Editor = function(renderer, session) { exports.Editor = Editor; -}); +}); \ No newline at end of file diff --git a/lib/ace/placeholder.js b/lib/ace/placeholder.js index 3306cba1..bcb44ce2 100644 --- a/lib/ace/placeholder.js +++ b/lib/ace/placeholder.js @@ -35,14 +35,12 @@ var EventEmitter = require("./lib/event_emitter").EventEmitter; var oop = require("./lib/oop"); /** - * class PlaceHolder - * - * TODO + * @class PlaceHolder * + * **/ /** - * new PlaceHolder(session, length, pos, others, mainClass, othersClass) * - session (Document): The document to associate with the anchor * - length (Number): The starting row position * - pos (Number): The starting column position @@ -50,8 +48,8 @@ var oop = require("./lib/oop"); * - mainClass (String): * - othersClass (String): * - * TODO - * + * + * @constructor **/ var PlaceHolder = function(session, length, pos, others, mainClass, othersClass) { diff --git a/lib/ace/range.js b/lib/ace/range.js index 0468a967..554545e4 100644 --- a/lib/ace/range.js +++ b/lib/ace/range.js @@ -32,21 +32,21 @@ define(function(require, exports, module) { "use strict"; /** - * class Range + * * * This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column. - * + * @class Range **/ /** - * new Range(startRow, startColumn, endRow, endColumn) - * - startRow (Number): The starting row - * - startColumn (Number): The starting column - * - endRow (Number): The ending row - * - endColumn (Number): The ending column - * * Creates a new `Range` object with the given starting and ending row and column points. + * @param {Number} startRow The starting row + * @param {Number} startColumn The starting column + * @param {Number} endRow The ending row + * @param {Number} endColumn The ending column * + * + * @constructor **/ var Range = function(startRow, startColumn, endRow, endColumn) { this.start = { @@ -62,11 +62,11 @@ var Range = function(startRow, startColumn, endRow, endColumn) { (function() { /** - * Range.isEqual(range) -> Boolean - * - range (Range): A range to check against - * * Returns `true` if and only if the starting row and column, and ending tow and column, are equivalent to those given by `range`. + * @param {Range} range A range to check against * + * + * @return Boolean **/ this.isEqual = function(range) { return this.start.row == range.start.row && @@ -76,38 +76,42 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }; /** - * Range.toString() -> String - * + * * Returns a string containing the range's row and column information, given like this: - * + * ``` * [start.row/start.column] -> [end.row/end.column] - * + * ``` + * @return String **/ this.toString = function() { return ("Range: [" + this.start.row + "/" + this.start.column + "] -> [" + this.end.row + "/" + this.end.column + "]"); }; - /** related to: Range.compare - * Range.contains(row, column) -> Boolean - * - row (Number): A row to check for - * - column (Number): A column to check for + /** * * Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if: - * + * ```javascript * this.start.row <= row <= this.end.row && * this.start.column <= column <= this.end.column - * + * ``` + * @param {Number} row A row to check for + * @param {Number} column A column to check for + * @returns {Boolean} + * @related Range.compare **/ this.contains = function(row, column) { return this.compare(row, column) == 0; }; - /** related to: Range.compare - * Range.compareRange(range) -> Number - * - range (Range): A range to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + /** + * Compares `this` range (A) with another range (B). + * @param {Range} range A range to compare with + * + * + * @related Range.compare + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `-2`: (B) is in front of (A), and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `-1`: (B) begins before (A) but ends inside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -115,9 +119,6 @@ var Range = function(startRow, startColumn, endRow, endColumn) { * * `+1`: (B) begins inside of (A) but ends outside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `+2`: (B) is after (A) and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `42`: FTW state: (B) ends in (A) but starts outside of (A) - * - * Compares `this` range (A) with another range (B). - * **/ this.compareRange = function(range) { var cmp, @@ -146,12 +147,16 @@ var Range = function(startRow, startColumn, endRow, endColumn) { return 0; } } - } + }; - /** related to: Range.compare - * Range.comparePoint(p) -> Number - * - p (Range): A point to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + /** + * + * Checks the row and column points of `p` with the row and column points of the calling range. + * + * @param {Range} p A point to compare with + * + * @related Range.compare + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -163,70 +168,66 @@ var Range = function(startRow, startColumn, endRow, endColumn) { * If the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * Otherwise, it returns 1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * - * Checks the row and column points of `p` with the row and column points of the calling range. - * - * - * **/ this.comparePoint = function(p) { return this.compare(p.row, p.column); - } + }; - /** related to: Range.comparePoint - * Range.containsRange(range) -> Boolean - * - range (Range): A range to compare with - * + /** * Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range. + * @param {Range} range A range to compare with * + * @returns {Boolean} + * @related Range.comparePoint + * **/ this.containsRange = function(range) { return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0; - } + }; /** - * Range.intersects(range) -> Boolean - * - range (Range): A range to compare with - * * Returns `true` if passed in `range` intersects with the one calling this method. + * @param {Range} range A range to compare with * + * + * @returns {Boolean} **/ this.intersects = function(range) { var cmp = this.compareRange(range); return (cmp == -1 || cmp == 0 || cmp == 1); - } + }; /** - * Range.isEnd(row, column) -> Boolean - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * * Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with * + * + * @returns {Boolean} **/ this.isEnd = function(row, column) { return this.end.row == row && this.end.column == column; - } + }; /** - * Range.isStart(row, column) -> Boolean - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * * Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with * + * + * @returns {Boolean} **/ this.isStart = function(row, column) { return this.start.row == row && this.start.column == column; - } + }; /** - * Range.setStart(row, column) - * - row (Number): A row point to set - * - column (Number): A column point to set - * * Sets the starting row and column for the range. + * @param {Number} row A row point to set + * @param {Number} column A column point to set * + * + * **/ this.setStart = function(row, column) { if (typeof row == "object") { @@ -236,14 +237,14 @@ var Range = function(startRow, startColumn, endRow, endColumn) { this.start.row = row; this.start.column = column; } - } + }; /** - * Range.setEnd(row, column) - * - row (Number): A row point to set - * - column (Number): A column point to set - * * Sets the starting row and column for the range. + * @param {Number} row A row point to set + * @param {Number} column A column point to set + * + * * **/ this.setEnd = function(row, column) { @@ -254,15 +255,16 @@ var Range = function(startRow, startColumn, endRow, endColumn) { this.end.row = row; this.end.column = column; } - } + }; - /** related to: Range.compare - * Range.inside(row, column) -> Boolean - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + /** * Returns `true` if the `row` and `column` are within the given range. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with * + * + * @returns {Boolean} + * @related Range.compare **/ this.inside = function(row, column) { if (this.compare(row, column) == 0) { @@ -273,15 +275,16 @@ var Range = function(startRow, startColumn, endRow, endColumn) { } } return false; - } + }; - /** related to: Range.compare - * Range.insideStart(row, column) -> Boolean - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + /** * Returns `true` if the `row` and `column` are within the given range's starting points. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with * + * + * @returns {Boolean} + * @related Range.compare **/ this.insideStart = function(row, column) { if (this.compare(row, column) == 0) { @@ -292,15 +295,17 @@ var Range = function(startRow, startColumn, endRow, endColumn) { } } return false; - } + }; - /** related to: Range.compare - * Range.insideEnd(row, column) -> Boolean - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + /** * Returns `true` if the `row` and `column` are within the given range's ending points. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with * + * + * @returns {Boolean} + * @related Range.compare + * **/ this.insideEnd = function(row, column) { if (this.compare(row, column) == 0) { @@ -311,28 +316,26 @@ var Range = function(startRow, startColumn, endRow, endColumn) { } } return false; - } + }; /** - * Range.compare(row, column) -> Number - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Checks the row and column points with the row and column points of the calling range. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with + * + * + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns 1 - * - * Checks the row and column points with the row and column points of the calling range. - * - * + * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns 1 **/ this.compare = function(row, column) { if (!this.isMultiLine()) { @@ -357,26 +360,25 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }; /** - * Range.compareStart(row, column) -> Number - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Checks the row and column points with the row and column points of the calling range. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with + * + * + * + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `1` if `p.row` is greater than the calling range, or if `isStart` is `true`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `1` if `p.row` is greater than the calling range, or if `isStart` is `true`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns 1 - * - * Checks the row and column points with the row and column points of the calling range. - * - * + * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns 1 * **/ this.compareStart = function(row, column) { @@ -385,51 +387,47 @@ var Range = function(startRow, startColumn, endRow, endColumn) { } else { return this.compare(row, column); } - } + }; /** - * Range.compareEnd(row, column) -> Number - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `1` if `p.row` is greater than the calling range, or if `isEnd` is `true.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Checks the row and column points with the row and column points of the calling range. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with + * + * + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `1` if `p.row` is greater than the calling range, or if `isEnd` is `true.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              - * * Otherwise, it returns 1 - * - * Checks the row and column points with the row and column points of the calling range. - * - * - **/ + * `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Otherwise, it returns 1 + */ this.compareEnd = function(row, column) { if (this.end.row == row && this.end.column == column) { return 1; } else { return this.compare(row, column); } - } + }; /** - * Range.compareInside(row, column) -> Number - * - row (Number): A row point to compare with - * - column (Number): A column point to compare with - * + (Number): This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + * Checks the row and column points with the row and column points of the calling range. + * @param {Number} row A row point to compare with + * @param {Number} column A column point to compare with + * + * + * @returns {Number} This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `1` if the ending row of the calling range is equal to `row`, and the ending column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * * `-1` if the starting row of the calling range is equal to `row`, and the starting column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              *
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * Otherwise, it returns the value after calling [[Range.compare `compare()`]]. * - * Checks the row and column points with the row and column points of the calling range. - * - * - * **/ this.compareInside = function(row, column) { if (this.end.row == row && this.end.column == column) { @@ -439,15 +437,15 @@ var Range = function(startRow, startColumn, endRow, endColumn) { } else { return this.compare(row, column); } - } + }; /** - * Range.clipRows(firstRow, lastRow) -> Range - * - firstRow (Number): The starting row - * - lastRow (Number): The ending row - * * Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object. + * @param {Number} firstRow The starting row + * @param {Number} lastRow The ending row * + * + * @returns {Range} **/ this.clipRows = function(firstRow, lastRow) { if (this.end.row > lastRow) { @@ -481,12 +479,12 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }; /** - * Range.extend(row, column) -> Range - * - row (Number): A new row to extend to - * - column (Number): A new column to extend to - * - * Changes the row and column points for the calling range for both the starting and ending points. This method returns that range with a new row. + * Changes the row and column points for the calling range for both the starting and ending points. + * @param {Number} row A new row to extend to + * @param {Number} column A new column to extend to * + * + * @returns {Range} The original range with the new row **/ this.extend = function(row, column) { var cmp = this.compare(row, column); @@ -506,30 +504,27 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }; /** - * Range.isMultiLine() -> Boolean - * - * Returns true if the range spans across multiple lines. - * + * + * Returns `true` if the range spans across multiple lines. + * @returns {Boolean} **/ this.isMultiLine = function() { return (this.start.row !== this.end.row); }; /** - * Range.clone() -> Range - * + * * Returns a duplicate of the calling range. - * + * @returns {Range} **/ this.clone = function() { return Range.fromPoints(this.start, this.end); }; /** - * Range.collapseRows() -> Range * * Returns a range containing the starting and ending rows of the original range, but with a column value of `0`. - * + * @returns {Range} **/ this.collapseRows = function() { if (this.end.column == 0) @@ -539,10 +534,11 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }; /** - * Range.toScreenRange(session) -> Range - * - session (EditSession): The `EditSession` to retrieve coordinates from - * * Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object. + * @param {EditSession} session The `EditSession` to retrieve coordinates from + * + * + * @returns {Range} **/ this.toScreenRange = function(session) { var screenPosStart = @@ -559,12 +555,12 @@ var Range = function(startRow, startColumn, endRow, endColumn) { }).call(Range.prototype); /** - * Range.fromPoints(start, end) -> Range - * - start (Range): A starting point to use - * - end (Range): An ending point to use - * * Creates and returns a new `Range` based on the row and column of the given parameters. - * + * @param {Range} start A starting point to use + * @param {Range} end An ending point to use + * + * + * @returns {Range} **/ Range.fromPoints = function(start, end) { return new Range(start.row, start.column, end.row, end.column); diff --git a/lib/ace/renderloop.js b/lib/ace/renderloop.js index 6accca49..ccbe98e1 100644 --- a/lib/ace/renderloop.js +++ b/lib/ace/renderloop.js @@ -33,19 +33,14 @@ define(function(require, exports, module) { var event = require("./lib/event"); -/** internal, hide - * class RenderLoop +/** + * * * Batches changes (that force something to be redrawn) in the background. - * + * @class RenderLoop **/ -/** internal, hide - * new RenderLoop(onRender, win) - * - * - * -**/ + var RenderLoop = function(onRender, win) { this.onRender = onRender; this.pending = false; @@ -55,12 +50,7 @@ var RenderLoop = function(onRender, win) { (function() { - /** internal, hide - * RenderLoop.schedule(change) - * - change (Array): - * - * - **/ + this.schedule = function(change) { //this.onRender(change); //return; diff --git a/lib/ace/scrollbar.js b/lib/ace/scrollbar.js index ada4d023..b667881c 100644 --- a/lib/ace/scrollbar.js +++ b/lib/ace/scrollbar.js @@ -37,18 +37,20 @@ var event = require("./lib/event"); var EventEmitter = require("./lib/event_emitter").EventEmitter; /** - * class ScrollBar + * * * A set of methods for setting and retrieving the editor's scrollbar. - * + * @class ScrollBar **/ /** - * new ScrollBar(parent) - * - parent (DOMElement): A DOM element - * * Creates a new `ScrollBar`. `parent` is the owner of the scroll bar. + * @param {DOMElement} parent A DOM element * + * + * + * + * @constructor **/ var ScrollBar = function(parent) { this.element = dom.createElement("div"); @@ -75,10 +77,11 @@ var ScrollBar = function(parent) { oop.implement(this, EventEmitter); /** - * ScrollBar@scroll(e) - * - e (Object): Contains one property, `"data"`, which indicates the current scroll top position - * * Emitted when the scroll bar, well, scrolls. + * @event scroll + * @param {Object} e Contains one property, `"data"`, which indicates the current scroll top position + * + * * **/ this.onScroll = function() { @@ -86,20 +89,19 @@ var ScrollBar = function(parent) { }; /** - * ScrollBar.getWidth() -> Number - * + * * Returns the width of the scroll bar. - * + * @returns {Number} **/ this.getWidth = function() { return this.width; }; /** - * ScrollBar.setHeight(height) - * - height (Number): The new height - * * Sets the height of the scroll bar, in pixels. + * @param {Number} height The new height + * + * * **/ this.setHeight = function(height) { @@ -107,25 +109,26 @@ var ScrollBar = function(parent) { }; /** - * ScrollBar.setInnerHeight(height) - * - height (Number): The new inner height - * * Sets the inner height of the scroll bar, in pixels. + * @param {Number} height The new inner height + * + * * **/ this.setInnerHeight = function(height) { this.inner.style.height = height + "px"; }; - /** - * ScrollBar.setScrollTop(scrollTop) - * - scrollTop (Number): The new scroll top - * - * Sets the scroll top of the scroll bar. - * - **/ + // TODO: on chrome 17+ for small zoom levels after calling this function // this.element.scrollTop != scrollTop which makes page to scroll up. + /** + * Sets the scroll top of the scroll bar. + * @param {Number} scrollTop The new scroll top + * + * + * + **/ this.setScrollTop = function(scrollTop) { this.element.scrollTop = scrollTop; }; diff --git a/lib/ace/search.js b/lib/ace/search.js index 035d44e8..3e90b95d 100644 --- a/lib/ace/search.js +++ b/lib/ace/search.js @@ -36,28 +36,29 @@ var oop = require("./lib/oop"); var Range = require("./range").Range; /** - * class Search + * @class Search * * A class designed to handle all sorts of text searches within a [[Document `Document`]]. * **/ /** - * new Search() + * * * Creates a new `Search` object. The following search options are avaliable: * - * * `needle`: The string or regular expression you're looking for - * * `backwards`: Whether to search backwards from where cursor currently is. Defaults to `false`. - * * `wrap`: Whether to wrap the search back to the beginning when it hits the end. Defaults to `false`. - * * `caseSensitive`: Whether the search ought to be case-sensitive. Defaults to `false`. - * * `wholeWord`: Whether the search matches only on whole words. Defaults to `false`. - * * `range`: The [[Range]] to search within. Set this to `null` for the whole document - * * `regExp`: Whether the search is a regular expression or not. Defaults to `false`. - * * `start`: The starting [[Range]] or cursor position to begin the search - * * `skipCurrent`: Whether or not to include the current line in the search. Default to `false`. - * -**/ + * - `needle`: The string or regular expression you're looking for + * - `backwards`: Whether to search backwards from where cursor currently is. Defaults to `false`. + * - `wrap`: Whether to wrap the search back to the beginning when it hits the end. Defaults to `false`. + * - `caseSensitive`: Whether the search ought to be case-sensitive. Defaults to `false`. + * - `wholeWord`: Whether the search matches only on whole words. Defaults to `false`. + * - `range`: The [[Range]] to search within. Set this to `null` for the whole document + * - `regExp`: Whether the search is a regular expression or not. Defaults to `false`. + * - `start`: The starting [[Range]] or cursor position to begin the search + * - `skipCurrent`: Whether or not to include the current line in the search. Default to `false`. + * + * @constructor + **/ var Search = function() { this.$options = {}; @@ -65,11 +66,12 @@ var Search = function() { (function() { /** - * Search.set(options) -> Search - * - options (Object): An object containing all the new search properties - * * Sets the search options via the `options` parameter. + * @param {Object} options An object containing all the new search properties * + * + * @returns {Search} + * @chainable **/ this.set = function(options) { oop.mixin(this.$options, options); @@ -77,24 +79,27 @@ var Search = function() { }; /** - * Search.getOptions() -> Object - * * [Returns an object containing all the search options.]{: #Search.getOptions} - * + * @returns {Object} **/ this.getOptions = function() { return lang.copyObject(this.$options); }; - + + /** + * Sets the search options via the `options` parameter. + * @param {Object} An object containing all the search propertie + * @related Search.set + **/ this.setOptions = function(options) { this.$options = options; }; /** - * Search.find(session) -> Range - * - session (EditSession): The session to search with - * * Searches for `options.needle`. If found, this method returns the [[Range `Range`]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session. + * @param {EditSession} session The session to search with * + * + * @returns {Range} **/ this.find = function(session) { var iterator = this.$matchIterator(session, this.$options); @@ -116,11 +121,11 @@ var Search = function() { }; /** - * Search.findAll(session) -> [Range] - * - session (EditSession): The session to search with - * * Searches for all occurances `options.needle`. If found, this method returns an array of [[Range `Range`s]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session. + * @param {EditSession} session The session to search with * + * + * @returns [Range] **/ this.findAll = function(session) { var options = this.$options; @@ -179,14 +184,14 @@ var Search = function() { }; /** - * Search.replace(input, replacement) -> String - * - input (String): The text to search in - * - replacement (String): The replacing text + * Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`. + * @param {String} input The text to search in + * @param {String} replacement The replacing text * + (String): If `options.regExp` is `true`, this function returns `input` with the replacement already made. Otherwise, this function just returns `replacement`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              * If `options.needle` was not found, this function returns `null`. * - * Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`. - * + * + * @returns {String} **/ this.replace = function(input, replacement) { var options = this.$options; @@ -218,11 +223,6 @@ var Search = function() { return replacement; }; - /** internal, hide - * Search.$matchIterator(session) -> String | Boolean - * - session (EditSession): The session to search with - * - **/ this.$matchIterator = function(session, options) { var re = this.$assembleRegExp(options); if (!re) diff --git a/lib/ace/selection.js b/lib/ace/selection.js index 0329612b..7cb2c685 100644 --- a/lib/ace/selection.js +++ b/lib/ace/selection.js @@ -37,32 +37,37 @@ var EventEmitter = require("./lib/event_emitter").EventEmitter; var Range = require("./range").Range; /** - * class Selection + * * * Contains the cursor position and the text selection of an edit session. * * The row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding. + * @class Selection **/ + /** - * new Selection(session) - * - session (EditSession): The session to use - * - * Creates a new `Selection` object. - * -**/ -/** - * Selection@changeCursor() - * * Emitted when the cursor position changes. + * @event changeCursor + * + * * **/ /** - * Selection@changeSelection() - * * Emitted when the cursor selection changes. + * @event changeSelection + * + * * **/ +/** + * Creates a new `Selection` object. + * @param {EditSession} session The session to use + * + * + * + * @constructor + **/ var Selection = function(session) { this.session = session; this.doc = session.getDocument(); @@ -91,9 +96,9 @@ var Selection = function(session) { oop.implement(this, EventEmitter); /** - * Selection.isEmpty() -> Boolean - * + * * Returns `true` if the selection is empty. + * @returns {Boolean} **/ this.isEmpty = function() { return (this.$isEmpty || ( @@ -102,10 +107,9 @@ var Selection = function(session) { )); }; - /** extension - * Selection.isMultiLine() -> Boolean - * + /** * Returns `true` if the selection is a multi-line. + * @returns {Boolean} **/ this.isMultiLine = function() { if (this.isEmpty()) { @@ -115,21 +119,20 @@ var Selection = function(session) { return this.getRange().isMultiLine(); }; - /** extension - * Selection.getCursor() -> Number - * + /** * Gets the current position of the cursor. + * @returns {Number} **/ this.getCursor = function() { return this.lead.getPosition(); }; /** - * Selection.setSelectionAnchor(row, column) - * - row (Number): The new row - * - column (Number): The new column - * * Sets the row and column position of the anchor. This function also emits the `'changeSelection'` event. + * @param {Number} row The new row + * @param {Number} column The new column + * + * **/ this.setSelectionAnchor = function(row, column) { this.anchor.setPosition(row, column); @@ -140,11 +143,9 @@ var Selection = function(session) { } }; - /** related to: Anchor.getPosition - * Selection.getSelectionAnchor() -> Object - * + /** * Returns an object containing the `row` and `column` of the calling selection anchor. - * + * @related Anchor.getPosition **/ this.getSelectionAnchor = function() { if (this.$isEmpty) @@ -154,19 +155,19 @@ var Selection = function(session) { }; /** - * Selection.getSelectionLead() -> Object - * + * * Returns an object containing the `row` and `column` of the calling selection lead. + * @returns {Object} **/ this.getSelectionLead = function() { return this.lead.getPosition(); }; /** - * Selection.shiftSelection(columns) - * - columns (Number): The number of columns to shift by - * * Shifts the selection up (or down, if [[Selection.isBackwards `isBackwards()`]] is true) the given number of columns. + * @param {Number} columns The number of columns to shift by + * + * * **/ this.shiftSelection = function(columns) { @@ -191,9 +192,8 @@ var Selection = function(session) { }; /** - * Selection.isBackwards() -> Boolean - * * Returns `true` if the selection is going backwards in the document. + * @returns {Boolean} **/ this.isBackwards = function() { var anchor = this.anchor; @@ -202,9 +202,8 @@ var Selection = function(session) { }; /** - * Selection.getRange() -> Range - * * [Returns the [[Range]] for the selected text.]{: #Selection.getRange} + * @returns {Range} **/ this.getRange = function() { var anchor = this.anchor; @@ -222,8 +221,6 @@ var Selection = function(session) { }; /** - * Selection.clearSelection() - * * [Empties the selection (by de-selecting it). This function also emits the `'changeSelection'` event.]{: #Selection.clearSelection} **/ this.clearSelection = function() { @@ -234,8 +231,6 @@ var Selection = function(session) { }; /** - * Selection.selectAll() - * * Selects all the text in the document. **/ this.selectAll = function() { @@ -245,12 +240,12 @@ var Selection = function(session) { }; /** - * Selection.setSelectionRange(range, reverse) - * - range (Range): The range of text to select - * - reverse (Boolean): Indicates if the range should go backwards (`true`) or not - * * Sets the selection to the provided range. + * @param {Range} range The range of text to select + * @param {Boolean} reverse Indicates if the range should go backwards (`true`) or not * + * + * @method setSelectionRange **/ this.setRange = this.setSelectionRange = function(range, reverse) { @@ -273,11 +268,11 @@ var Selection = function(session) { }; /** - * Selection.selectTo(row, column) - * - row (Number): The row to select to - * - column (Number): The column to select to - * * Moves the selection cursor to the indicated row and column. + * @param {Number} row The row to select to + * @param {Number} column The column to select to + * + * * **/ this.selectTo = function(row, column) { @@ -287,10 +282,10 @@ var Selection = function(session) { }; /** - * Selection.selectToPosition(pos) - * - pos (Object): An object containing the row and column - * * Moves the selection cursor to the row and column indicated by `pos`. + * @param {Object} pos An object containing the row and column + * + * * **/ this.selectToPosition = function(pos) { @@ -300,8 +295,7 @@ var Selection = function(session) { }; /** - * Selection.selectUp() - * + * * Moves the selection up one row. **/ this.selectUp = function() { @@ -309,8 +303,7 @@ var Selection = function(session) { }; /** - * Selection.selectDown() - * + * * Moves the selection down one row. **/ this.selectDown = function() { @@ -318,7 +311,7 @@ var Selection = function(session) { }; /** - * Selection.selectRight() + * * * Moves the selection right one column. **/ @@ -327,8 +320,7 @@ var Selection = function(session) { }; /** - * Selection.selectLeft() - * + * * Moves the selection left one column. **/ this.selectLeft = function() { @@ -336,8 +328,7 @@ var Selection = function(session) { }; /** - * Selection.selectLineStart() - * + * * Moves the selection to the beginning of the current line. **/ this.selectLineStart = function() { @@ -345,8 +336,7 @@ var Selection = function(session) { }; /** - * Selection.selectLineEnd() - * + * * Moves the selection to the end of the current line. **/ this.selectLineEnd = function() { @@ -354,8 +344,7 @@ var Selection = function(session) { }; /** - * Selection.selectFileEnd() - * + * * Moves the selection to the end of the file. **/ this.selectFileEnd = function() { @@ -363,8 +352,7 @@ var Selection = function(session) { }; /** - * Selection.selectFileStart() - * + * * Moves the selection to the start of the file. **/ this.selectFileStart = function() { @@ -372,8 +360,7 @@ var Selection = function(session) { }; /** - * Selection.selectWordRight() - * + * * Moves the selection to the first word on the right. **/ this.selectWordRight = function() { @@ -381,18 +368,16 @@ var Selection = function(session) { }; /** - * Selection.selectWordLeft() - * + * * Moves the selection to the first word on the left. **/ this.selectWordLeft = function() { this.$moveSelection(this.moveCursorWordLeft); }; - /** related to: EditSession.getWordRange - * Selection.selectWord() - * + /** * Moves the selection to highlight the entire word. + * @related EditSession.getWordRange **/ this.getWordRange = function(row, column) { if (typeof column == "undefined") { @@ -402,15 +387,18 @@ var Selection = function(session) { } return this.session.getWordRange(row, column); }; - + + /** + * + * Selects an entire word boundary. + **/ this.selectWord = function() { this.setSelectionRange(this.getWordRange()); }; - /** related to: EditSession.getAWordRange - * Selection.selectAWord() - * + /** * Selects a word, including its right whitespace. + * @related EditSession.getAWordRange **/ this.selectAWord = function() { var cursor = this.getCursor(); @@ -436,8 +424,6 @@ var Selection = function(session) { }; /** - * Selection.selectLine() - * * Selects the entire line. **/ this.selectLine = function() { @@ -445,8 +431,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorUp() - * + * * Moves the cursor up one row. **/ this.moveCursorUp = function() { @@ -454,8 +439,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorDown() - * + * * Moves the cursor down one row. **/ this.moveCursorDown = function() { @@ -463,8 +447,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorLeft() - * + * * Moves the cursor left one column. **/ this.moveCursorLeft = function() { @@ -489,8 +472,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorRight() - * + * * Moves the cursor right one column. **/ this.moveCursorRight = function() { @@ -515,8 +497,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorLineStart() - * + * * Moves the cursor to the start of the line. **/ this.moveCursorLineStart = function() { @@ -548,8 +529,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorLineEnd() - * + * * Moves the cursor to the end of the line. **/ this.moveCursorLineEnd = function() { @@ -568,8 +548,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorFileEnd() - * + * * Moves the cursor to the end of the file. **/ this.moveCursorFileEnd = function() { @@ -579,8 +558,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorFileStart() - * + * * Moves the cursor to the start of the file. **/ this.moveCursorFileStart = function() { @@ -588,8 +566,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorLongWordRight() - * + * * Moves the cursor to the word on the right. **/ this.moveCursorLongWordRight = function() { @@ -635,8 +612,7 @@ var Selection = function(session) { }; /** - * Selection.moveCursorLongWordLeft() - * + * * Moves the cursor to the word on the left. **/ this.moveCursorLongWordLeft = function() { @@ -788,12 +764,13 @@ var Selection = function(session) { this.moveCursorShortWordLeft(); }; - /** related to: EditSession.documentToScreenPosition - * Selection.moveCursorBy(rows, chars) - * - rows (Number): The number of rows to move by - * - chars (Number): The number of characters to move by + /** + * Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document. + * @param {Number} rows The number of rows to move by + * @param {Number} chars The number of characters to move by * - * Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document. + * + * @related EditSession.documentToScreenPosition **/ this.moveCursorBy = function(rows, chars) { var screenPos = this.session.documentToScreenPosition( @@ -815,22 +792,22 @@ var Selection = function(session) { }; /** - * Selection.moveCursorToPosition(position) - * - position (Object): The position to move to - * * Moves the selection to the position indicated by its `row` and `column`. + * @param {Object} position The position to move to + * + * **/ this.moveCursorToPosition = function(position) { this.moveCursorTo(position.row, position.column); }; /** - * Selection.moveCursorTo(row, column, keepDesiredColumn) - * - row (Number): The row to move to - * - column (Number): The column to move to - * - keepDesiredColumn (Boolean): [If `true`, the cursor move does not respect the previous column]{: #preventUpdateBool} - * * Moves the cursor to the row and column provided. [If `preventUpdateDesiredColumn` is `true`, then the cursor stays in the same column position as its original point.]{: #preventUpdateBoolDesc} + * @param {Number} row The row to move to + * @param {Number} column The column to move to + * @param {Boolean} keepDesiredColumn [If `true`, the cursor move does not respect the previous column]{: #preventUpdateBool} + * + * **/ this.moveCursorTo = function(row, column, keepDesiredColumn) { // Ensure the row/column is not inside of a fold. @@ -849,12 +826,12 @@ var Selection = function(session) { }; /** - * Selection.moveCursorToScreen(row, column, keepDesiredColumn) - * - row (Number): The row to move to - * - column (Number): The column to move to - * - keepDesiredColumn (Boolean): {:preventUpdateBool} - * * Moves the cursor to the screen position indicated by row and column. {:preventUpdateBoolDesc} + * @param {Number} row The row to move to + * @param {Number} column The column to move to + * @param {Boolean} keepDesiredColumn {:preventUpdateBool} + * + * **/ this.moveCursorToScreen = function(row, column, keepDesiredColumn) { var pos = this.session.screenToDocumentPosition(row, column); diff --git a/lib/ace/split.js b/lib/ace/split.js index 080879bc..b2caa3c1 100644 --- a/lib/ace/split.js +++ b/lib/ace/split.js @@ -39,22 +39,13 @@ var Editor = require("./editor").Editor; var Renderer = require("./virtual_renderer").VirtualRenderer; var EditSession = require("./edit_session").EditSession; -/** internal, hide - * class Split +/** + * @class Split * * * **/ -/** internal, hide - * new Split(container, theme, splits) - * - container (Document): The document to associate with the split - * - theme (String): The name of the initial theme - * - splits (Number): The number of initial splits - * - * - * - **/ var Split = function(container, theme, splits) { this.BELOW = 1; @@ -96,13 +87,6 @@ var Split = function(container, theme, splits) { return editor; }; - /** internal, hide - * Split.setSplits(splits) -> Void - * - splits (Number): The new number of splits - * - * - * - **/ this.setSplits = function(splits) { var editor; if (splits < 1) { @@ -133,18 +117,16 @@ var Split = function(container, theme, splits) { }; /** - * Split.getSplits() -> Number - * + * * Returns the number of splits. - * + * @returns {Number} **/ this.getSplits = function() { return this.$splits; }; /** - * Split.getEditor(idx) -> Editor - * -idx (Number): The index of the editor you want + * @param {Number} idx The index of the editor you want * * Returns the editor identified by the index `idx`. * @@ -154,40 +136,36 @@ var Split = function(container, theme, splits) { }; /** - * Split.getCurrentEditor() -> Editor - * + * * Returns the current editor. - * + * @returns {Editor} **/ this.getCurrentEditor = function() { return this.$cEditor; }; - /** related to: Editor.focus - * Split.focus() -> Void - * + /** * Focuses the current editor. - * + * @related Editor.focus **/ this.focus = function() { this.$cEditor.focus(); }; - /** related to: Editor.blur - * Split.blur() -> Void - * + /** * Blurs the current editor. - * + * @related Editor.blur **/ this.blur = function() { this.$cEditor.blur(); }; - /** related to: Editor.setTheme - * Split.setTheme(theme) -> Void - * - theme (String): The name of the theme to set + /** + * + * @param {String} theme The name of the theme to set * * Sets a theme for each of the available editors. + * @related Editor.setTheme **/ this.setTheme = function(theme) { this.$editors.forEach(function(editor) { @@ -195,11 +173,12 @@ var Split = function(container, theme, splits) { }); }; - /** internal, hide - * Split.setKeyboardHandler(keybinding) -> Void - * - keybinding (String): + /** * - * + * @param {String} keybinding + * + * Sets the keyboard handler for the editor. + * @related editor.setKeyboardHandler **/ this.setKeyboardHandler = function(keybinding) { this.$editors.forEach(function(editor) { @@ -207,10 +186,10 @@ var Split = function(container, theme, splits) { }); }; - /** internal, hide - * Split.forEach(callback, scope) -> Void - * - callback (Function): A callback function to execute - * - scope (String): + /** + * + * @param {Function} callback A callback function to execute + * @param {String} scope The default scope for the callback * * Executes `callback` on all of the available editors. * @@ -219,14 +198,14 @@ var Split = function(container, theme, splits) { this.$editors.forEach(callback, scope); }; - /** related to: Editor.setFontSize - * Split.setFontSize(size) -> Void - * - size (Number): The new font size + + this.$fontSize = ""; + /** + * @param {Number} size The new font size * * Sets the font size, in pixels, for all the available editors. * **/ - this.$fontSize = ""; this.setFontSize = function(size) { this.$fontSize = size; this.forEach(function(editor) { @@ -261,13 +240,13 @@ var Split = function(container, theme, splits) { return s; }; - /** related to: Editor.setSession - * Split.setSession(session, idx) -> Void - * - session (EditSession): The new edit session - * - idx (Number): The editor's index you're interested in + /** + * + * @param {EditSession} session The new edit session + * @param {Number} idx The editor's index you're interested in * * Sets a new [[EditSession `EditSession`]] for the indicated editor. - * + * @related Editor.setSession **/ this.setSession = function(session, idx) { var editor; @@ -295,19 +274,18 @@ var Split = function(container, theme, splits) { return session; }; - /** internal, hide - * Split.getOrientation() -> Number + /** * * Returns the orientation. - * + * @returns Number **/ this.getOrientation = function() { return this.$orientation; }; - /** internal, hide - * Split.setOrientation(oriantation) -> Void - * - oriantation (Number): + /** + * + * @param {Number} orientation The new orientation value * * Sets the orientation. * @@ -320,11 +298,11 @@ var Split = function(container, theme, splits) { this.resize(); }; - /** internal + /** * Split.resize() -> Void * * - * + * Resizes the editor. **/ this.resize = function() { var width = this.$container.clientWidth; @@ -356,12 +334,7 @@ var Split = function(container, theme, splits) { }).call(Split.prototype); - /** internal - * Split.UndoManagerProxy() -> Void - * - * - * - **/ + function UndoManagerProxy(undoManager, session) { this.$u = undoManager; this.$doc = session; diff --git a/lib/ace/token_iterator.js b/lib/ace/token_iterator.js index 43f5ac2e..e0082b51 100644 --- a/lib/ace/token_iterator.js +++ b/lib/ace/token_iterator.js @@ -32,20 +32,19 @@ define(function(require, exports, module) { "use strict"; /** - * class TokenIterator + * * * This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens. - * + * @class TokenIterator **/ /** - * new TokenIterator(session, initialRow, initialColumn) - * - session (EditSession): The session to associate with - * - initialRow (Number): The row to start the tokenizing at - * - initialColumn (Number): The column to start the tokenizing at - * * Creates a new token iterator object. The inital token index is set to the provided row and column coordinates. + * @param {EditSession} session The session to associate with + * @param {Number} initialRow The row to start the tokenizing at + * @param {Number} initialColumn The column to start the tokenizing at * + * @constructor **/ var TokenIterator = function(session, initialRow, initialColumn) { this.$session = session; @@ -59,10 +58,9 @@ var TokenIterator = function(session, initialRow, initialColumn) { (function() { /** - * TokenIterator.stepBackward() -> [String] - * + (String): If the current point is not at the top of the file, this function returns `null`. Otherwise, it returns an array of the tokenized strings. * * Tokenizes all the items from the current point to the row prior in the document. + * @returns [String] If the current point is not at the top of the file, this function returns `null`. Otherwise, it returns an array of the tokenized strings. **/ this.stepBackward = function() { this.$tokenIndex -= 1; @@ -82,9 +80,9 @@ var TokenIterator = function(session, initialRow, initialColumn) { }; /** - * TokenIterator.stepForward() -> String * * Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns `null`. Otherwise, it returns the tokenized string. + * @returns {String} **/ this.stepForward = function() { var rowCount = this.$session.getLength(); @@ -105,30 +103,27 @@ var TokenIterator = function(session, initialRow, initialColumn) { }; /** - * TokenIterator.getCurrentToken() -> String * * Returns the current tokenized string. - * + * @returns {String} **/ this.getCurrentToken = function () { return this.$rowTokens[this.$tokenIndex]; }; /** - * TokenIterator.getCurrentTokenRow() -> Number * * Returns the current row. - * + * @returns {Number} **/ this.getCurrentTokenRow = function () { return this.$row; }; /** - * TokenIterator.getCurrentTokenColumn() -> Number * * Returns the current column. - * + * @returns {Number} **/ this.getCurrentTokenColumn = function() { var rowTokens = this.$rowTokens; diff --git a/lib/ace/tokenizer.js b/lib/ace/tokenizer.js index 565e2cde..4d277275 100644 --- a/lib/ace/tokenizer.js +++ b/lib/ace/tokenizer.js @@ -32,19 +32,21 @@ define(function(require, exports, module) { "use strict"; /** - * class Tokenizer + * * * This class takes a set of highlighting rules, and creates a tokenizer out of them. For more information, see [the wiki on extending highlighters](https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#wiki-extendingTheHighlighter). - * + * @class Tokenizer **/ /** - * new Tokenizer(rules, flag) - * - rules (Object): The highlighting rules - * - flag (String): Any additional regular expression flags to pass (like "i" for case insensitive) - * * Constructs a new tokenizer based on the given rules and flags. + * @param {Object} rules The highlighting rules + * @param {String} flag Any additional regular expression flags to pass (like "i" for case insensitive) * + * + * + * + * @constructor **/ var Tokenizer = function(rules, flag) { flag = flag ? "g" + flag : "g"; @@ -92,9 +94,8 @@ var Tokenizer = function(rules, flag) { (function() { /** - * Tokenizer.getLineTokens() -> Object - * * Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state. + * @returns {Object} **/ this.getLineTokens = function(line, startState) { var currentState = startState || "start"; diff --git a/lib/ace/undomanager.js b/lib/ace/undomanager.js index 09596a60..4f7626fe 100644 --- a/lib/ace/undomanager.js +++ b/lib/ace/undomanager.js @@ -32,16 +32,18 @@ define(function(require, exports, module) { "use strict"; /** - * class UndoManager + * * * This object maintains the undo stack for an [[EditSession `EditSession`]]. - * + * @class UndoManager **/ /** - * new UndoManager() + * * * Resets the current undo state and creates a new `UndoManager`. + * + * @constructor **/ var UndoManager = function() { this.reset(); @@ -50,13 +52,12 @@ var UndoManager = function() { (function() { /** - * UndoManager.execute(options) -> Void - * - options (Object): Contains additional properties - * * Provides a means for implementing your own undo manager. `options` has one property, `args`, an [[Array `Array`]], with two elements: * - * * `args[0]` is an array of deltas - * * `args[1]` is the document to associate with + * - `args[0]` is an array of deltas + * - `args[1]` is the document to associate with + * + * @param {Object} options Contains additional properties * **/ this.execute = function(options) { @@ -67,10 +68,11 @@ var UndoManager = function() { }; /** - * UndoManager.undo(dontSelect) -> Range - * - dontSelect (Boolean): {:dontSelect} + * [Perform an undo operation on the document, reverting the last change.]{: #UndoManager.undo} + * @param {Boolean} dontSelect {:dontSelect} * - * [Perform an undo operation on the document, reverting the last change. Returns the range of the undo.]{: #UndoManager.undo} + * + * @returns {Range} The range of the undo. **/ this.undo = function(dontSelect) { var deltas = this.$undoStack.pop(); @@ -84,10 +86,10 @@ var UndoManager = function() { }; /** - * UndoManager.redo(dontSelect) -> Void - * - dontSelect (Boolean): {:dontSelect} - * * [Perform a redo operation on the document, reimplementing the last change.]{: #UndoManager.redo} + * @param {Boolean} dontSelect {:dontSelect} + * + * **/ this.redo = function(dontSelect) { var deltas = this.$redoStack.pop(); @@ -101,8 +103,7 @@ var UndoManager = function() { }; /** - * UndoManager.reset() -> Void - * + * * Destroys the stack of undo and redo redo operations. **/ this.reset = function() { @@ -111,18 +112,18 @@ var UndoManager = function() { }; /** - * UndoManager.hasUndo() -> Boolean - * + * * Returns `true` if there are undo operations left to perform. + * @returns {Boolean} **/ this.hasUndo = function() { return this.$undoStack.length > 0; }; /** - * UndoManager.hasRedo() -> Boolean - * + * * Returns `true` if there are redo operations left to perform. + * @returns {Boolean} **/ this.hasRedo = function() { return this.$redoStack.length > 0; diff --git a/lib/ace/virtual_renderer.js b/lib/ace/virtual_renderer.js index b2331de4..d5662ca6 100644 --- a/lib/ace/virtual_renderer.js +++ b/lib/ace/virtual_renderer.js @@ -49,19 +49,21 @@ var editorCss = require("./requirejs/text!./css/editor.css"); dom.importCssString(editorCss, "ace_editor"); /** - * class VirtualRenderer + * * * The class that is responsible for drawing everything you see on the screen! - * + * @class VirtualRenderer **/ /** - * new VirtualRenderer(container, theme) - * - container (DOMElement): The root element of the editor - * - theme (String): The starting theme - * * Constructs a new `VirtualRenderer` within the `container` specified, applying the given `theme`. + * @param {DOMElement} container The root element of the editor + * @param {String} theme The starting theme * + * + * + * + * @constructor **/ var VirtualRenderer = function(container, theme) { @@ -196,9 +198,8 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.setSession(session) * - * Associates an [[EditSession `EditSession`]]. + * Associates the renderer with an [[EditSession `EditSession`]]. **/ this.setSession = function(session) { this.session = session; @@ -215,11 +216,11 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateLines(firstRow, lastRow) - * - firstRow (Number): The first row to update - * - lastRow (Number): The last row to update - * * Triggers a partial update of the text, from the range given by the two parameters. + * @param {Number} firstRow The first row to update + * @param {Number} lastRow The last row to update + * + * **/ this.updateLines = function(firstRow, lastRow) { if (lastRow === undefined) @@ -248,8 +249,6 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateText() - * * Triggers a full update of the text, for all the rows. **/ this.updateText = function() { @@ -257,10 +256,10 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateFull(force) - * - force (Boolean): If `true`, forces the changes through - * * Triggers a full update of all the layers, for all the rows. + * @param {Boolean} force If `true`, forces the changes through + * + * **/ this.updateFull = function(force) { if (force){ @@ -272,8 +271,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateFontSize() - * + * * Updates the font size. **/ this.updateFontSize = function() { @@ -281,13 +279,13 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.onResize(force, gutterWidth, width, height) - * - force (Boolean): If `true`, recomputes the size, even if the height and width haven't changed - * - gutterWidth (Number): The width of the gutter in pixels - * - width (Number): The width of the editor in pixels - * - height (Number): The hiehgt of the editor, in pixels - * * [Triggers a resize of the editor.]{: #VirtualRenderer.onResize} + * @param {Boolean} force If `true`, recomputes the size, even if the height and width haven't changed + * @param {Number} gutterWidth The width of the gutter in pixels + * @param {Number} width The width of the editor in pixels + * @param {Number} height The hiehgt of the editor, in pixels + * + * **/ this.onResize = function(force, gutterWidth, width, height) { var changes = this.CHANGE_SIZE; @@ -339,8 +337,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.adjustWrapLimit() - * + * * Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen. **/ this.adjustWrapLimit = function() { @@ -350,10 +347,10 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.setAnimatedScroll(shouldAnimate) - * - shouldAnimate (Boolean): Set to `true` to show animated scrolls - * * Identifies whether you want to have an animated scroll or not. + * @param {Boolean} shouldAnimate Set to `true` to show animated scrolls + * + * * **/ this.setAnimatedScroll = function(shouldAnimate){ @@ -361,19 +358,19 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getAnimatedScroll() -> Boolean - * + * * Returns whether an animated scroll happens or not. + * @returns {Boolean} **/ this.getAnimatedScroll = function() { return this.$animatedScroll; }; /** - * VirtualRenderer.setShowInvisibles(showInvisibles) - * - showInvisibles (Boolean): Set to `true` to show invisibles - * * Identifies whether you want to show invisible characters or not. + * @param {Boolean} showInvisibles Set to `true` to show invisibles + * + * * **/ this.setShowInvisibles = function(showInvisibles) { @@ -382,9 +379,9 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getShowInvisibles() -> Boolean - * + * * Returns whether invisible characters are being shown or not. + * @returns {Boolean} **/ this.getShowInvisibles = function() { return this.$textLayer.showInvisibles; @@ -402,10 +399,10 @@ var VirtualRenderer = function(container, theme) { this.$showPrintMargin = true; /** - * VirtualRenderer.setShowPrintMargin(showPrintMargin) - * - showPrintMargin (Boolean): Set to `true` to show the print margin - * * Identifies whether you want to show the print margin or not. + * @param {Boolean} showPrintMargin Set to `true` to show the print margin + * + * * **/ this.setShowPrintMargin = function(showPrintMargin) { @@ -414,9 +411,8 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getShowPrintMargin() -> Boolean - * - * Returns whetherthe print margin is being shown or not. + * Returns whether the print margin is being shown or not. + * @returns {Boolean} **/ this.getShowPrintMargin = function() { return this.$showPrintMargin; @@ -425,10 +421,10 @@ var VirtualRenderer = function(container, theme) { this.$printMarginColumn = 80; /** - * VirtualRenderer.setPrintMarginColumn(showPrintMargin) - * - showPrintMargin (Boolean): Set to `true` to show the print margin column - * * Identifies whether you want to show the print margin column or not. + * @param {Boolean} showPrintMargin Set to `true` to show the print margin column + * + * * **/ this.setPrintMarginColumn = function(showPrintMargin) { @@ -437,28 +433,28 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getPrintMarginColumn() -> Boolean - * + * * Returns whether the print margin column is being shown or not. + * @returns {Boolean} **/ this.getPrintMarginColumn = function() { return this.$printMarginColumn; }; /** - * VirtualRenderer.getShowGutter() -> Boolean - * + * * Returns `true` if the gutter is being shown. + * @returns {Boolean} **/ this.getShowGutter = function(){ return this.showGutter; }; /** - * VirtualRenderer.setShowGutter(show) - * - show (Boolean): Set to `true` to show the gutter - * * Identifies whether you want to show the gutter or not. + * @param {Boolean} show Set to `true` to show the gutter + * + * **/ this.setShowGutter = function(show){ if(this.showGutter === show) @@ -526,27 +522,27 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getContainerElement() -> DOMElement - * + * * Returns the root element containing this renderer. + * @returns {DOMElement} **/ this.getContainerElement = function() { return this.container; }; /** - * VirtualRenderer.getMouseEventTarget() -> DOMElement - * + * * Returns the element that the mouse events are attached to + * @returns {DOMElement} **/ this.getMouseEventTarget = function() { return this.content; }; /** - * VirtualRenderer.getTextAreaContainer() -> DOMElement - * + * * Returns the element to which the hidden text area is added. + * @returns {DOMElement} **/ this.getTextAreaContainer = function() { return this.container; @@ -582,27 +578,27 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getFirstVisibleRow() -> Number - * + * * [Returns the index of the first visible row.]{: #VirtualRenderer.getFirstVisibleRow} + * @returns {Number} **/ this.getFirstVisibleRow = function() { return this.layerConfig.firstRow; }; /** - * VirtualRenderer.getFirstFullyVisibleRow() -> Number - * + * * Returns the index of the first fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen. + * @returns {Number} **/ this.getFirstFullyVisibleRow = function() { return this.layerConfig.firstRow + (this.layerConfig.offset === 0 ? 0 : 1); }; /** - * VirtualRenderer.getLastFullyVisibleRow() -> Number - * + * * Returns the index of the last fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen. + * @returns {Number} **/ this.getLastFullyVisibleRow = function() { var flint = Math.floor((this.layerConfig.height + this.layerConfig.offset) / this.layerConfig.lineHeight); @@ -610,9 +606,9 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getLastVisibleRow() -> Number - * + * * [Returns the index of the last visible row.]{: #VirtualRenderer.getLastVisibleRow} + * @returns {Number} **/ this.getLastVisibleRow = function() { return this.layerConfig.lastRow; @@ -621,10 +617,10 @@ var VirtualRenderer = function(container, theme) { this.$padding = null; /** - * VirtualRenderer.setPadding(padding) - * - padding (Number): A new padding value (in pixels) - * * Sets the padding for all the layers. + * @param {Number} padding A new padding value (in pixels) + * + * * **/ this.setPadding = function(padding) { @@ -638,19 +634,19 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getHScrollBarAlwaysVisible() -> Boolean - * + * * Returns whether the horizontal scrollbar is set to be always visible. + * @returns {Boolean} **/ this.getHScrollBarAlwaysVisible = function() { return this.$horizScrollAlwaysVisible; }; /** - * VirtualRenderer.setHScrollBarAlwaysVisible(alwaysVisible) - * - alwaysVisible (Boolean): Set to `true` to make the horizontal scroll bar visible - * * Identifies whether you want to show the horizontal scrollbar or not. + * @param {Boolean} alwaysVisible Set to `true` to make the horizontal scroll bar visible + * + * **/ this.setHScrollBarAlwaysVisible = function(alwaysVisible) { if (this.$horizScrollAlwaysVisible != alwaysVisible) { @@ -862,8 +858,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateFrontMarkers() - * + * * Schedules an update to all the front markers in the document. **/ this.updateFrontMarkers = function() { @@ -872,8 +867,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateBackMarkers() - * + * * Schedules an update to all the back markers in the document. **/ this.updateBackMarkers = function() { @@ -881,27 +875,25 @@ var VirtualRenderer = function(container, theme) { this.$loop.schedule(this.CHANGE_MARKER_BACK); }; - /** deprecated - * VirtualRenderer.addGutterDecoration(row, className) - * + /** + * * Deprecated; (moved to [[EditSession]]) + * @deprecated **/ this.addGutterDecoration = function(row, className){ this.$gutterLayer.addGutterDecoration(row, className); }; - /** deprecated - * VirtualRenderer.removeGutterDecoration(row, className)-> Void - * + /** * Deprecated; (moved to [[EditSession]]) + * @deprecated **/ this.removeGutterDecoration = function(row, className){ this.$gutterLayer.removeGutterDecoration(row, className); }; /** - * VirtualRenderer.updateBreakpoints() - * + * * Redraw breakpoints. **/ this.updateBreakpoints = function(rows) { @@ -909,10 +901,11 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.setAnnotations(annotations) - * - annotations (Array): An array containing annotations - * + * * Sets annotations for the gutter. + * @param {Array} annotations An array containing annotations + * + * **/ this.setAnnotations = function(annotations) { this.$gutterLayer.setAnnotations(annotations); @@ -920,8 +913,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.updateCursor() - * + * * Updates the cursor icon. **/ this.updateCursor = function() { @@ -929,8 +921,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.hideCursor() - * + * * Hides the cursor icon. **/ this.hideCursor = function() { @@ -938,8 +929,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.showCursor() - * + * * Shows the cursor icon. **/ this.showCursor = function() { @@ -953,8 +943,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.scrollCursorIntoView(cursor, offset) - * + * * Scrolls the cursor into the first visibile area of the editor **/ this.scrollCursorIntoView = function(cursor, offset) { @@ -988,47 +977,48 @@ var VirtualRenderer = function(container, theme) { } }; - /** related to: EditSession.getScrollTop - * VirtualRenderer.getScrollTop() -> Number - * + /** * {:EditSession.getScrollTop} + * @related EditSession.getScrollTop + * @returns {Number} **/ this.getScrollTop = function() { return this.session.getScrollTop(); }; - /** related to: EditSession.getScrollLeft - * VirtualRenderer.getScrollLeft() -> Number - * + /** * {:EditSession.getScrollLeft} + * @related EditSession.getScrollLeft + * @returns {Number} **/ this.getScrollLeft = function() { return this.session.getScrollLeft(); }; /** - * VirtualRenderer.getScrollTopRow() -> Number - * + * * Returns the first visible row, regardless of whether it's fully visible or not. + * @returns {Number} **/ this.getScrollTopRow = function() { return this.scrollTop / this.lineHeight; }; /** - * VirtualRenderer.getScrollBottomRow() -> Number - * + * * Returns the last visible row, regardless of whether it's fully visible or not. + * @returns {Number} **/ this.getScrollBottomRow = function() { return Math.max(0, Math.floor((this.scrollTop + this.$size.scrollerHeight) / this.lineHeight) - 1); }; - /** related to: EditSession.setScrollTop - * VirtualRenderer.scrollToRow(row) - * - row (Number): A row id + /** + * Gracefully scrolls from the top of the editor to the row indicated. + * @param {Number} row A row id * - * Gracefully scrolls the top of the editor to the row indicated. + * + * @related EditSession.setScrollTop **/ this.scrollToRow = function(row) { this.session.setScrollTop(row * this.lineHeight); @@ -1063,13 +1053,13 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.scrollToLine(line, center, animate, callback) - * - line (Number): A line number - * - center (Boolean): If `true`, centers the editor the to indicated line - * - animate (Boolean): If `true` animates scrolling - * - callback (Function): Function to be called after the animation has finished - * * Gracefully scrolls the editor to the row indicated. + * @param {Number} line A line number + * @param {Boolean} center If `true`, centers the editor the to indicated line + * @param {Boolean} animate If `true` animates scrolling + * @param {Function} callback Function to be called after the animation has finished + * + * **/ this.scrollToLine = function(line, center, animate, callback) { var pos = this.$cursorLayer.getPixelPosition({row: line, column: 0}); @@ -1113,11 +1103,11 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.scrollToY(scrollTop) -> Number - * - scrollTop (Number): The position to scroll to - * * Scrolls the editor to the y pixel indicated. + * @param {Number} scrollTop The position to scroll to * + * + * @returns {Number} **/ this.scrollToY = function(scrollTop) { // after calling scrollBar.setScrollTop @@ -1129,11 +1119,11 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.scrollToX(scrollLeft) -> Number - * - scrollLeft (Number): The position to scroll to - * - * Scrolls the editor to the x pixel indicated. + * Scrolls the editor across the x-axis to the pixel indicated. + * @param {Number} scrollLeft The position to scroll to * + * + * @returns {Number} **/ this.scrollToX = function(scrollLeft) { if (scrollLeft < 0) @@ -1145,11 +1135,11 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.scrollBy(deltaX, deltaY) - * - deltaX (Number): The x value to scroll by - * - deltaY (Number): The y value to scroll by - * * Scrolls the editor across both x- and y-axes. + * @param {Number} deltaX The x value to scroll by + * @param {Number} deltaY The y value to scroll by + * + * **/ this.scrollBy = function(deltaX, deltaY) { deltaY && this.session.setScrollTop(this.session.getScrollTop() + deltaY); @@ -1157,11 +1147,12 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.isScrollableBy(deltaX, deltaY) -> Boolean - * - deltaX (Number): The x value to scroll by - * - deltaY (Number): The y value to scroll by - * * Returns `true` if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line. + * @param {Number} deltaX The x value to scroll by + * @param {Number} deltaY The y value to scroll by + * + * + * @returns {Boolean} **/ this.isScrollableBy = function(deltaX, deltaY) { if (deltaY < 0 && this.session.getScrollTop() > 0) @@ -1195,13 +1186,13 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.textToScreenCoordinates(row, column) -> Object - * - row (Number): The document row position - * - column (Number): The document column position - * * Returns an object containing the `pageX` and `pageY` coordinates of the document position. + * @param {Number} row The document row position + * @param {Number} column The document column position * + * * + * @returns {Object} **/ this.textToScreenCoordinates = function(row, column) { var canvasPos = this.scroller.getBoundingClientRect(); @@ -1217,8 +1208,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.visualizeFocus() - * + * * Focuses the current container. **/ this.visualizeFocus = function() { @@ -1226,18 +1216,17 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.visualizeBlur() - * + * * Blurs the current container. **/ this.visualizeBlur = function() { dom.removeCssClass(this.container, "ace_focus"); }; - /** internal, hide - * VirtualRenderer.showComposition(position) - * - position (Number): + /** + * @param {Number} position * + * @private **/ this.showComposition = function(position) { if (!this.$composition) @@ -1253,8 +1242,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.setCompositionText(text) - * - text (String): A string of text to use + * @param {String} text A string of text to use * * Sets the inner text of the current composition to `text`. **/ @@ -1263,8 +1251,7 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.hideComposition() - * + * * Hides the current composition. **/ this.hideComposition = function() { @@ -1285,10 +1272,10 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.setTheme(theme) - * - theme (String): The path to a theme - * * [Sets a new theme for the editor. `theme` should exist, and be a directory path, like `ace/theme/textmate`.]{: #VirtualRenderer.setTheme} + * @param {String} theme The path to a theme + * + * **/ this.setTheme = function(theme) { var _self = this; @@ -1346,9 +1333,8 @@ var VirtualRenderer = function(container, theme) { }; /** - * VirtualRenderer.getTheme() -> String - * * [Returns the path of the current theme.]{: #VirtualRenderer.getTheme} + * @returns {String} **/ this.getTheme = function() { return this.$themeValue; @@ -1359,28 +1345,27 @@ var VirtualRenderer = function(container, theme) { // a certain mode that editor is in. /** - * VirtualRenderer.setStyle(style) - * - style (String): A class name - * * [Adds a new class, `style`, to the editor.]{: #VirtualRenderer.setStyle} + * @param {String} style A class name + * + * **/ this.setStyle = function setStyle(style, include) { dom.setCssClass(this.container, style, include != false); }; /** - * VirtualRenderer.unsetStyle(style) - * - style (String): A class name - * * [Removes the class `style` from the editor.]{: #VirtualRenderer.unsetStyle} + * @param {String} style A class name + * + * **/ this.unsetStyle = function unsetStyle(style) { dom.removeCssClass(this.container, style); }; /** - * VirtualRenderer.destroy() - * + * * Destroys the text and cursor layers for this renderer. **/ this.destroy = function() { From 8698b13c8bc1c517f98441f24e6cb384ad3c77f5 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Mon, 26 Nov 2012 17:44:40 -0800 Subject: [PATCH 3/5] More work on JSD format --- api/api.json | 14380 ----------------- doc/build.js | 5 +- doc/resources/ace/skeleton/javascripts/ux.js | 2 +- doc/resources/ace/templates/ace_menu.jade | 59 - doc/resources/ace/templates/layout.jade | 2 +- doc/resources/ace/templates/lib.jade | 233 +- doc/resources/common_layout.jade | 57 - lib/ace/edit_session.js | 8 +- lib/ace/editor.js | 9 +- 9 files changed, 109 insertions(+), 14646 deletions(-) delete mode 100644 api/api.json delete mode 100644 doc/resources/ace/templates/ace_menu.jade delete mode 100644 doc/resources/common_layout.jade diff --git a/api/api.json b/api/api.json deleted file mode 100644 index 78c034f0..00000000 --- a/api/api.json +++ /dev/null @@ -1,14380 +0,0 @@ -{ - "title": "Ace API", - "date": "Thu, 25 Oct 2012 20:19:19 GMT", - "tree": { - "children": [ - { - "id": "Ace", - "type": "class", - "description": "The main class required to set up an Ace instance in the browser.", - "short_description": "The main class required to set up an Ace instance in the browser.", - "line": 31, - "author": [], - "aliases": [], - "children": [ - { - "id": "Ace.edit", - "type": "class method", - "description": "Embeds the Ace editor into the DOM, at the element provided by `el`.", - "short_description": "Embeds the Ace editor into the DOM, at the element provided by `el`.", - "line": 57, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "el", - "description": "Either the id of an element, or the element itself", - "types": [ - "String", - "DOMElement" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/ace.js", - "name": "edit", - "name_prefix": "Ace.", - "path": "Ace.edit", - "outFile": "ace.html#Ace.edit" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/ace.js", - "subclasses": [], - "name": "Ace", - "path": "Ace", - "outFile": "ace.html" - }, - { - "id": "Anchor", - "type": "class", - "description": "Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated.", - "short_description": "Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated.", - "line": 125, - "author": [], - "aliases": [], - "children": [ - { - "id": "Anchor.$clipPositionToDocument", - "type": "class method", - "description": "Clips the anchor position to the specified row and column.", - "short_description": "Clips the anchor position to the specified row and column.", - "line": 304, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row index to clip the anchor to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column index to clip the anchor to", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "$clipPositionToDocument", - "name_prefix": "Anchor.", - "path": "Anchor.$clipPositionToDocument", - "outFile": "anchor.html#Anchor.$clipPositionToDocument" - }, - { - "id": "Anchor.detach", - "type": "class method", - "description": "When called, the `'change'` event listener is removed.", - "short_description": "When called, the `'change'` event listener is removed.", - "line": 295, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "detach", - "name_prefix": "Anchor.", - "path": "Anchor.detach", - "outFile": "anchor.html#Anchor.detach" - }, - { - "id": "Anchor.getDocument", - "type": "class method", - "description": "Returns the current document.", - "short_description": "Returns the current document.", - "line": 167, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Document", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "getDocument", - "name_prefix": "Anchor.", - "path": "Anchor.getDocument", - "outFile": "anchor.html#Anchor.getDocument" - }, - { - "id": "Anchor.getPosition", - "type": "class method", - "description": "Returns an object identifying the `row` and `column` position of the current anchor.", - "short_description": "Returns an object identifying the `row` and `column` position of the current anchor.", - "line": 158, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "getPosition", - "name_prefix": "Anchor.", - "path": "Anchor.getPosition", - "outFile": "anchor.html#Anchor.getPosition" - }, - { - "id": "new Anchor", - "type": "constructor", - "description": "Creates a new `Anchor` and associates it with a document.", - "short_description": "Creates a new `Anchor` and associates it with a document.", - "line": 132, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "doc", - "description": "The document to associate with the anchor", - "types": [ - "Document" - ], - "optional": false - }, - { - "name": "row", - "description": "The starting row position", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The starting column position", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "new", - "name_prefix": "Anchor.", - "path": "Anchor.new", - "outFile": "anchor.html#Anchor.new" - }, - { - "id": "Anchor.setPosition", - "type": "class method", - "description": "Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped.", - "short_description": "Sets the anchor position to the specified row and column. If `noClip` is `true`, the position is not clipped.", - "line": 257, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row index to move the anchor to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column index to move the anchor to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "noClip", - "description": "Identifies if you want the position to be clipped", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "setPosition", - "name_prefix": "Anchor.", - "path": "Anchor.setPosition", - "outFile": "anchor.html#Anchor.setPosition" - }, - { - "id": "Anchor@change", - "type": "event", - "description": "Fires whenever the anchor position changes.\n\nBoth of these objects have a `row` and `column` property corresponding to the position.\n\nEvents that can trigger this function include [[Anchor.setPosition `setPosition()`]].", - "short_description": "Fires whenever the anchor position changes.\n", - "line": 177, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "An object containing information about the anchor position. It has two properties: \n- `old`: An object describing the old Anchor position\n- `value`: An object describing the new Anchor position", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "name": "change", - "name_prefix": "Anchor@", - "path": "Anchor.event.change", - "outFile": "anchor.html#Anchor.event.change" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/anchor.js", - "subclasses": [], - "name": "Anchor", - "path": "Anchor", - "outFile": "anchor.html" - }, - { - "id": "BackgroundTokenizer", - "type": "class", - "description": "Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. \n\nIf a certain row is changed, everything below that row is re-tokenized.", - "short_description": "Tokenizes the current [[Document `Document`]] in the background, and caches the tokenized rows for future use. \n", - "line": 343, - "author": [], - "aliases": [], - "children": [ - { - "id": "BackgroundTokenizer.fireUpdateEvent", - "type": "class method", - "description": "Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated.", - "short_description": "Emits the `'update'` event. `firstRow` and `lastRow` are used to define the boundaries of the region to be updated.", - "line": 439, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The starting row region", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row region", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "fireUpdateEvent", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.fireUpdateEvent", - "outFile": "background_tokenizer.html#BackgroundTokenizer.fireUpdateEvent" - }, - { - "id": "BackgroundTokenizer.getState", - "type": "class method", - "description": "[Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState}", - "short_description": "[Returns the state of tokenization at the end of a row.]{: #BackgroundTokenizer.getState}", - "line": 517, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to get state at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "getState", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.getState", - "outFile": "background_tokenizer.html#BackgroundTokenizer.getState" - }, - { - "id": "BackgroundTokenizer.getTokens", - "type": "class method", - "description": "Gives list of tokens of the row. (tokens are cached)", - "short_description": "Gives list of tokens of the row. (tokens are cached)", - "line": 505, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to get tokens at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "getTokens", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.getTokens", - "outFile": "background_tokenizer.html#BackgroundTokenizer.getTokens" - }, - { - "id": "new BackgroundTokenizer", - "type": "constructor", - "description": "Creates a new `BackgroundTokenizer` object.", - "short_description": "Creates a new `BackgroundTokenizer` object.", - "line": 353, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "tokenizer", - "description": "The tokenizer to use", - "types": [ - "Tokenizer" - ], - "optional": false - }, - { - "name": "editor", - "description": "The editor to associate with", - "types": [ - "Editor" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "new", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.new", - "outFile": "background_tokenizer.html#BackgroundTokenizer.new" - }, - { - "id": "BackgroundTokenizer.setDocument", - "type": "class method", - "description": "Sets a new document to associate with this object.", - "short_description": "Sets a new document to associate with this object.", - "line": 420, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "doc", - "description": "The new document to associate with", - "types": [ - "Document" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "setDocument", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.setDocument", - "outFile": "background_tokenizer.html#BackgroundTokenizer.setDocument" - }, - { - "id": "BackgroundTokenizer.setTokenizer", - "type": "class method", - "description": "Sets a new tokenizer for this object.", - "short_description": "Sets a new tokenizer for this object.", - "line": 406, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "tokenizer", - "description": "The new tokenizer to use", - "types": [ - "Tokenizer" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "setTokenizer", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.setTokenizer", - "outFile": "background_tokenizer.html#BackgroundTokenizer.setTokenizer" - }, - { - "id": "BackgroundTokenizer.start", - "type": "class method", - "description": "Starts tokenizing at the row indicated.", - "short_description": "Starts tokenizing at the row indicated.", - "line": 453, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "startRow", - "description": "The row to start at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "start", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.start", - "outFile": "background_tokenizer.html#BackgroundTokenizer.start" - }, - { - "id": "BackgroundTokenizer.stop", - "type": "class method", - "description": "Stops tokenizing.", - "short_description": "Stops tokenizing.", - "line": 495, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "stop", - "name_prefix": "BackgroundTokenizer.", - "path": "BackgroundTokenizer.stop", - "outFile": "background_tokenizer.html#BackgroundTokenizer.stop" - }, - { - "id": "BackgroundTokenizer@update", - "type": "event", - "description": "Fires whenever the background tokeniziers between a range of rows are going to be updated.", - "short_description": "Fires whenever the background tokeniziers between a range of rows are going to be updated.", - "line": 432, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "An object containing two properties, `first` and `last`, which indicate the rows of the region being updated.", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "name": "update", - "name_prefix": "BackgroundTokenizer@", - "path": "BackgroundTokenizer.event.update", - "outFile": "background_tokenizer.html#BackgroundTokenizer.event.update" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/background_tokenizer.js", - "subclasses": [], - "name": "BackgroundTokenizer", - "path": "BackgroundTokenizer", - "outFile": "background_tokenizer.html" - }, - { - "id": "CommandManager", - "type": "class", - "description": "new CommandManager(platform, commands)", - "short_description": "new CommandManager(platform, commands)", - "line": 523, - "author": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/commands/command_manager.js", - "subclasses": [], - "name": "CommandManager", - "path": "CommandManager", - "outFile": "command_manager.html" - }, - { - "id": "Document", - "type": "class", - "description": "Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. \n\nAt its core, `Document`s are just an array of strings, with each row in the document matching up to the array index.", - "short_description": "Contains the text of the document. Document can be attached to several [[EditSession `EditSession`]]s. \n", - "line": 945, - "author": [], - "aliases": [], - "children": [ - { - "id": "Document.$split", - "type": "class method", - "description": "Splits a string of text on any newline (`\\n`) or carriage-return ('\\r') characters.", - "short_description": "Splits a string of text on any newline (`\\n`) or carriage-return ('\\r') characters.", - "line": 1007, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The text to work with", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "description": "A String array, with each index containing a piece of the original `text` string." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "$split", - "name_prefix": "Document.", - "path": "Document.$split", - "outFile": "document.html#Document.$split" - }, - { - "id": "Document.applyDeltas", - "type": "class method", - "description": "Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", - "short_description": "Applies all the changes previously accumulated. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", - "line": 1466, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltas", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "applyDeltas", - "name_prefix": "Document.", - "path": "Document.applyDeltas", - "outFile": "document.html#Document.applyDeltas" - }, - { - "id": "Document.createAnchor", - "type": "class method", - "description": "Creates a new `Anchor` to define a floating point in the document.", - "short_description": "Creates a new `Anchor` to define a floating point in the document.", - "line": 996, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number to use", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column number to use", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "createAnchor", - "name_prefix": "Document.", - "path": "Document.createAnchor", - "outFile": "document.html#Document.createAnchor" - }, - { - "id": "Document.getAllLines", - "type": "class method", - "description": "Returns all lines in the document as string array. Warning: The caller should not modify this array!", - "short_description": "Returns all lines in the document as string array. Warning: The caller should not modify this array!", - "line": 1118, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getAllLines", - "name_prefix": "Document.", - "path": "Document.getAllLines", - "outFile": "document.html#Document.getAllLines" - }, - { - "id": "Document.getLength", - "type": "class method", - "description": "Returns the number of rows in the document.", - "short_description": "Returns the number of rows in the document.", - "line": 1125, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getLength", - "name_prefix": "Document.", - "path": "Document.getLength", - "outFile": "document.html#Document.getLength" - }, - { - "id": "Document.getLine", - "type": "class method", - "description": "Returns a verbatim copy of the given line as it is in the document", - "short_description": "Returns a verbatim copy of the given line as it is in the document", - "line": 1095, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row index to retrieve", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getLine", - "name_prefix": "Document.", - "path": "Document.getLine", - "outFile": "document.html#Document.getLine" - }, - { - "id": "Document.getLines", - "type": "class method", - "description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", - "short_description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", - "line": 1106, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The first row index to retrieve", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row index to retrieve", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getLines", - "name_prefix": "Document.", - "path": "Document.getLines", - "outFile": "document.html#Document.getLines" - }, - { - "id": "Document.getNewLineCharacter", - "type": "class method", - "description": "Returns the newline character that's being used, depending on the value of `newLineMode`.", - "short_description": "Returns the newline character that's being used, depending on the value of `newLineMode`.", - "line": 1038, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "If `newLineMode == windows`, `\\r\\n` is returned. \nIf `newLineMode == unix`, `\\n` is returned. \nIf `newLineMode == auto`, the value of `autoNewLine` is returned." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getNewLineCharacter", - "name_prefix": "Document.", - "path": "Document.getNewLineCharacter", - "outFile": "document.html#Document.getNewLineCharacter" - }, - { - "id": "Document.getNewLineMode", - "type": "class method", - "description": "[Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode}", - "short_description": "[Returns the type of newlines being used; either `windows`, `unix`, or `auto`]{: #Document.getNewLineMode}", - "line": 1076, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getNewLineMode", - "name_prefix": "Document.", - "path": "Document.getNewLineMode", - "outFile": "document.html#Document.getNewLineMode" - }, - { - "id": "Document.getTextRange", - "type": "class method", - "description": "[Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc}", - "short_description": "[Given a range within the document, this function returns all the text within that range as a single string.]{: #Document.getTextRange.desc}", - "line": 1132, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "The range to work with", - "types": [ - "Range" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getTextRange", - "name_prefix": "Document.", - "path": "Document.getTextRange", - "outFile": "document.html#Document.getTextRange" - }, - { - "id": "Document.getValue", - "type": "class method", - "description": "Returns all the lines in the document as a single string, split by the new line character.", - "short_description": "Returns all the lines in the document as a single string, split by the new line character.", - "line": 989, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "getValue", - "name_prefix": "Document.", - "path": "Document.getValue", - "outFile": "document.html#Document.getValue" - }, - { - "id": "Document.insert", - "type": "class method", - "description": "Inserts a block of `text` and the indicated `position`.", - "short_description": "Inserts a block of `text` and the indicated `position`.", - "line": 1160, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to start inserting at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "text", - "description": "A chunk of text to insert", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "insert", - "name_prefix": "Document.", - "path": "Document.insert", - "outFile": "document.html#Document.insert" - }, - { - "id": "Document.insertInLine", - "type": "class method", - "description": "Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event.", - "short_description": "Inserts `text` into the `position` at the current row. This method also triggers the `'change'` event.", - "line": 1288, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to insert at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "text", - "description": "A chunk of text", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Returns an object containing the final row and column, like this: \n ```\n {row: endRow, column: 0}\n```" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "insertInLine", - "name_prefix": "Document.", - "path": "Document.insertInLine", - "outFile": "document.html#Document.insertInLine" - }, - { - "id": "Document.insertLines", - "type": "class method", - "description": "Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event.", - "short_description": "Inserts the elements in `lines` into the document, starting at the row index given by `row`. This method also triggers the `'change'` event.", - "line": 1215, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The index of the row to insert at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lines", - "description": "An array of strings", - "types": [ - "Array" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Contains the final row and column, like this: \n ```\n {row: endRow, column: 0}\n``` \nIf `lines` is empty, this function returns an object containing the current row, and column, like this: \n ``` \n {row: row, column: 0}\n```" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "insertLines", - "name_prefix": "Document.", - "path": "Document.insertLines", - "outFile": "document.html#Document.insertLines" - }, - { - "id": "Document.insertNewLine", - "type": "class method", - "description": "Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event.", - "short_description": "Inserts a new line into the document at the current row's `position`. This method also triggers the `'change'` event.", - "line": 1257, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to insert at", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Returns an object containing the final row and column, like this:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n ```\n {row: endRow, column: 0}\n```" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "insertNewLine", - "name_prefix": "Document.", - "path": "Document.insertNewLine", - "outFile": "document.html#Document.insertNewLine" - }, - { - "id": "Document.isNewLine", - "type": "class method", - "description": "Returns `true` if `text` is a newline character (either `\\r\\n`, `\\r`, or `\\n`).", - "short_description": "Returns `true` if `text` is a newline character (either `\\r\\n`, `\\r`, or `\\n`).", - "line": 1084, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The text to check", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "isNewLine", - "name_prefix": "Document.", - "path": "Document.isNewLine", - "outFile": "document.html#Document.isNewLine" - }, - { - "id": "new Document", - "type": "constructor", - "description": "Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty.", - "short_description": "Creates a new `Document`. If `text` is included, the `Document` contains those strings; otherwise, it's empty.", - "line": 953, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The starting text", - "types": [ - "String", - "Array" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "new", - "name_prefix": "Document.", - "path": "Document.new", - "outFile": "document.html#Document.new" - }, - { - "id": "Document.remove", - "type": "class method", - "description": "Removes the `range` from the document.", - "short_description": "Removes the `range` from the document.", - "line": 1324, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A specified Range to remove", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Returns the new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "remove", - "name_prefix": "Document.", - "path": "Document.remove", - "outFile": "document.html#Document.remove" - }, - { - "id": "Document.removeInLine", - "type": "class method", - "description": "Removes the specified columns from the `row`. This method also triggers the `'change'` event.", - "short_description": "Removes the specified columns from the `row`. This method also triggers the `'change'` event.", - "line": 1363, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to remove from", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "startColumn", - "description": "The column to start removing at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "endColumn", - "description": "The column to stop removing at", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Returns an object containing `startRow` and `startColumn`, indicating the new row and column values.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              If `startColumn` is equal to `endColumn`, this function returns nothing." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "removeInLine", - "name_prefix": "Document.", - "path": "Document.removeInLine", - "outFile": "document.html#Document.removeInLine" - }, - { - "id": "Document.removeLines", - "type": "class method", - "description": "Removes a range of full lines. This method also triggers the `'change'` event.", - "short_description": "Removes a range of full lines. This method also triggers the `'change'` event.", - "line": 1391, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The first row to be removed", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The last row to be removed", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "isArray": true, - "description": "Returns all the removed lines." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "removeLines", - "name_prefix": "Document.", - "path": "Document.removeLines", - "outFile": "document.html#Document.removeLines" - }, - { - "id": "Document.removeNewLine", - "type": "class method", - "description": "Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event.", - "short_description": "Removes the new line between `row` and the row immediately following it. This method also triggers the `'change'` event.", - "line": 1413, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to check", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "removeNewLine", - "name_prefix": "Document.", - "path": "Document.removeNewLine", - "outFile": "document.html#Document.removeNewLine" - }, - { - "id": "Document.replace", - "type": "class method", - "description": "Replaces a range in the document with the new `text`.", - "short_description": "Replaces a range in the document with the new `text`.", - "line": 1435, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A specified Range to replace", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "text", - "description": "The new text to use as a replacement", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "Returns an object containing the final row and column, like this:\n{row: endRow, column: 0}\nIf the text and range are empty, this function returns an object containing the current `range.start` value.\nIf the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "replace", - "name_prefix": "Document.", - "path": "Document.replace", - "outFile": "document.html#Document.replace" - }, - { - "id": "Document.revertDeltas", - "type": "class method", - "description": "Reverts any changes previously applied. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", - "short_description": "Reverts any changes previously applied. These can be either `'includeText'`, `'insertLines'`, `'removeText'`, and `'removeLines'`.", - "line": 1485, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltas", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "revertDeltas", - "name_prefix": "Document.", - "path": "Document.revertDeltas", - "outFile": "document.html#Document.revertDeltas" - }, - { - "id": "Document.setNewLineMode", - "type": "class method", - "description": "[Sets the new line mode.]{: #Document.setNewLineMode.desc}", - "short_description": "[Sets the new line mode.]{: #Document.setNewLineMode.desc}", - "line": 1063, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "newLineMode", - "description": "[The newline mode to use; can be either `windows`, `unix`, or `auto`]{: #Document.setNewLineMode.param}", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "setNewLineMode", - "name_prefix": "Document.", - "path": "Document.setNewLineMode", - "outFile": "document.html#Document.setNewLineMode" - }, - { - "id": "Document.setValue", - "type": "class method", - "description": "Replaces all the lines in the current `Document` with the value of `text`.", - "short_description": "Replaces all the lines in the current `Document` with the value of `text`.", - "line": 978, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The text to use", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "setValue", - "name_prefix": "Document.", - "path": "Document.setValue", - "outFile": "document.html#Document.setValue" - }, - { - "id": "Document@change", - "type": "event", - "description": "Fires whenever the document changes.\n\nSeveral methods trigger different `\"change\"` events. Below is a list of each action type, followed by each property that's also available:\n\n* `\"insertLines\"` (emitted by [[Document.insertLines]])\n* `range`: the [[Range]] of the change within the document\n* `lines`: the lines in the document that are changing\n* `\"insertText\"` (emitted by [[Document.insertNewLine]])\n* `range`: the [[Range]] of the change within the document\n* `text`: the text that's being added\n* `\"removeLines\"` (emitted by [[Document.insertLines]])\n* `range`: the [[Range]] of the change within the document\n* `lines`: the lines in the document that were removed\n* `nl`: the new line character (as defined by [[Document.getNewLineCharacter]])\n* `\"removeText\"` (emitted by [[Document.removeInLine]] and [[Document.removeNewLine]])\n* `range`: the [[Range]] of the change within the document\n* `text`: the text that's being removed", - "short_description": "Fires whenever the document changes.\n", - "line": 1192, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "Contains at least one property called `\"action\"`. `\"action\"` indicates the action that triggered the change. Each action also has a set of additional properties.", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "name": "change", - "name_prefix": "Document@", - "path": "Document.event.change", - "outFile": "document.html#Document.event.change" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/document.js", - "subclasses": [], - "name": "Document", - "path": "Document", - "outFile": "document.html" - }, - { - "id": "Editor", - "type": "class", - "description": "The main entry point into the Ace functionality. \n\nThe `Editor` manages the `[[EditSession]]` (which manages `[[Document]]`s), as well as the `[[VirtualRenderer]]`, which draws everything to the screen. \n\nEvent sessions dealing with the mouse and keyboard are bubbled up from `Document` to the `Editor`, which decides what to do with them.", - "short_description": "The main entry point into the Ace functionality. \n", - "line": 5118, - "author": [], - "aliases": [], - "children": [ - { - "id": "Editor.$getSelectedRows", - "type": "class method", - "description": "Returns an object indicating the currently selected rows. The object looks like this:\n```json\n{ first: range.start.row, last: range.end.row }\n```", - "short_description": "Returns an object indicating the currently selected rows. The object looks like this:\n```json\n{ first: range.start.row, last: range.end.row }\n```", - "line": 6490, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "$getSelectedRows", - "name_prefix": "Editor.", - "path": "Editor.$getSelectedRows", - "outFile": "editor.html#Editor.$getSelectedRows" - }, - { - "id": "Editor.$getVisibleRowCount", - "type": "class method", - "description": "Returns the number of currently visibile rows.", - "short_description": "Returns the number of currently visibile rows.", - "line": 6557, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "$getVisibleRowCount", - "name_prefix": "Editor.", - "path": "Editor.$getVisibleRowCount", - "outFile": "editor.html#Editor.$getVisibleRowCount" - }, - { - "id": "Editor.$moveLines", - "type": "class method", - "description": "Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.", - "short_description": "Executes a specific function, which can be anything that manipulates selected lines, such as copying them, duplicating them, or shifting them.", - "line": 6461, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "mover", - "description": "A method to call on each selected row", - "types": [ - "Function" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "$moveLines", - "name_prefix": "Editor.", - "path": "Editor.$moveLines", - "outFile": "editor.html#Editor.$moveLines" - }, - { - "id": "Editor.blockOutdent", - "type": "class method", - "description": "Outdents the current line.", - "short_description": "Outdents the current line.", - "line": 6316, - "author": [], - "related": "EditSession.outdentRows", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "blockOutdent", - "name_prefix": "Editor.", - "path": "Editor.blockOutdent", - "outFile": "editor.html#Editor.blockOutdent" - }, - { - "id": "Editor.blur", - "type": "class method", - "description": "Blurs the current `textInput`.", - "short_description": "Blurs the current `textInput`.", - "line": 5455, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "blur", - "name_prefix": "Editor.", - "path": "Editor.blur", - "outFile": "editor.html#Editor.blur" - }, - { - "id": "Editor.centerSelection", - "type": "class method", - "description": "Attempts to center the current selection on the screen.", - "short_description": "Attempts to center the current selection on the screen.", - "line": 6654, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "centerSelection", - "name_prefix": "Editor.", - "path": "Editor.centerSelection", - "outFile": "editor.html#Editor.centerSelection" - }, - { - "id": "Editor.clearSelection", - "type": "class method", - "description": "{:Selection.clearSelection}", - "short_description": "{:Selection.clearSelection}", - "line": 6708, - "author": [], - "related": "Selection.clearSelection", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "clearSelection", - "name_prefix": "Editor.", - "path": "Editor.clearSelection", - "outFile": "editor.html#Editor.clearSelection" - }, - { - "id": "Editor.copyLinesDown", - "type": "class method", - "description": "Copies all the selected lines down one row.", - "short_description": "Copies all the selected lines down one row.", - "line": 6448, - "author": [], - "related": "EditSession.duplicateLines", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "On success, returns the number of new rows added; in other words, `lastRow - firstRow + 1`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "copyLinesDown", - "name_prefix": "Editor.", - "path": "Editor.copyLinesDown", - "outFile": "editor.html#Editor.copyLinesDown" - }, - { - "id": "Editor.copyLinesUp", - "type": "class method", - "description": "Copies all the selected lines up one row.", - "short_description": "Copies all the selected lines up one row.", - "line": 6436, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "On success, returns 0." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "copyLinesUp", - "name_prefix": "Editor.", - "path": "Editor.copyLinesUp", - "outFile": "editor.html#Editor.copyLinesUp" - }, - { - "id": "Editor.destroy", - "type": "class method", - "description": "Cleans up the entire editor.", - "short_description": "Cleans up the entire editor.", - "line": 7116, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "destroy", - "name_prefix": "Editor.", - "path": "Editor.destroy", - "outFile": "editor.html#Editor.destroy" - }, - { - "id": "Editor.find", - "type": "class method", - "description": "Attempts to find `needle` within the document. For more information on `options`, see [[Search `Search`]].", - "short_description": "Attempts to find `needle` within the document. For more information on `options`, see [[Search `Search`]].", - "line": 7010, - "author": [], - "related": "Search.find", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "needle", - "description": "The text to search for (optional)", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "options", - "description": "An object defining various search properties", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animate scrolling", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "find", - "name_prefix": "Editor.", - "path": "Editor.find", - "outFile": "editor.html#Editor.find" - }, - { - "id": "Editor.findNext", - "type": "class method", - "description": "Performs another search for `needle` in the document. For more information on `options`, see [[Search `Search`]].", - "short_description": "Performs another search for `needle` in the document. For more information on `options`, see [[Search `Search`]].", - "line": 7058, - "author": [], - "related": "Editor.find", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "options", - "description": "search options", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animate scrolling", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "findNext", - "name_prefix": "Editor.", - "path": "Editor.findNext", - "outFile": "editor.html#Editor.findNext" - }, - { - "id": "Editor.findPrevious", - "type": "class method", - "description": "Performs a search for `needle` backwards. For more information on `options`, see [[Search `Search`]].", - "short_description": "Performs a search for `needle` backwards. For more information on `options`, see [[Search `Search`]].", - "line": 7070, - "author": [], - "related": "Editor.find", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "options", - "description": "search options", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animate scrolling", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "findPrevious", - "name_prefix": "Editor.", - "path": "Editor.findPrevious", - "outFile": "editor.html#Editor.findPrevious" - }, - { - "id": "Editor.focus", - "type": "class method", - "description": "Brings the current `textInput` into focus.", - "short_description": "Brings the current `textInput` into focus.", - "line": 5432, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "focus", - "name_prefix": "Editor.", - "path": "Editor.focus", - "outFile": "editor.html#Editor.focus" - }, - { - "id": "Editor.getBehavioursEnabled", - "type": "class method", - "description": "Returns `true` if the behaviors are currently enabled. {:BehaviorsDef}", - "short_description": "Returns `true` if the behaviors are currently enabled. {:BehaviorsDef}", - "line": 6099, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getBehavioursEnabled", - "name_prefix": "Editor.", - "path": "Editor.getBehavioursEnabled", - "outFile": "editor.html#Editor.getBehavioursEnabled" - }, - { - "id": "Editor.getCopyText", - "type": "class method", - "description": "Returns the string of text currently highlighted.", - "short_description": "Returns the string of text currently highlighted.", - "line": 5679, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getCopyText", - "name_prefix": "Editor.", - "path": "Editor.getCopyText", - "outFile": "editor.html#Editor.getCopyText" - }, - { - "id": "Editor.getCursorPosition", - "type": "class method", - "description": "Gets the current position of the cursor.", - "short_description": "Gets the current position of the cursor.", - "line": 6666, - "author": [], - "related": "Selection.getCursor", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "An object that looks something like this: \n```json\n{ row: currRow, column: currCol }\n```" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getCursorPosition", - "name_prefix": "Editor.", - "path": "Editor.getCursorPosition", - "outFile": "editor.html#Editor.getCursorPosition" - }, - { - "id": "Editor.getCursorPositionScreen", - "type": "class method", - "description": "Returns the screen position of the cursor.", - "short_description": "Returns the screen position of the cursor.", - "line": 6679, - "author": [], - "related": "EditSession.documentToScreenPosition", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getCursorPositionScreen", - "name_prefix": "Editor.", - "path": "Editor.getCursorPositionScreen", - "outFile": "editor.html#Editor.getCursorPositionScreen" - }, - { - "id": "Editor.getDragDelay", - "type": "class method", - "description": "Returns the current mouse drag delay.", - "short_description": "Returns the current mouse drag delay.", - "line": 5893, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getDragDelay", - "name_prefix": "Editor.", - "path": "Editor.getDragDelay", - "outFile": "editor.html#Editor.getDragDelay" - }, - { - "id": "Editor.getFirstVisibleRow", - "type": "class method", - "description": "{:VirtualRenderer.getFirstVisibleRow}", - "short_description": "{:VirtualRenderer.getFirstVisibleRow}", - "line": 6518, - "author": [], - "related": "VirtualRenderer.getFirstVisibleRow", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getFirstVisibleRow", - "name_prefix": "Editor.", - "path": "Editor.getFirstVisibleRow", - "outFile": "editor.html#Editor.getFirstVisibleRow" - }, - { - "id": "Editor.getHighlightActiveLine", - "type": "class method", - "description": "Returns `true` if current lines are always highlighted.", - "short_description": "Returns `true` if current lines are always highlighted.", - "line": 5953, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getHighlightActiveLine", - "name_prefix": "Editor.", - "path": "Editor.getHighlightActiveLine", - "outFile": "editor.html#Editor.getHighlightActiveLine" - }, - { - "id": "Editor.getHighlightSelectedWord", - "type": "class method", - "description": "Returns `true` if currently highlighted words are to be highlighted.", - "short_description": "Returns `true` if currently highlighted words are to be highlighted.", - "line": 5989, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getHighlightSelectedWord", - "name_prefix": "Editor.", - "path": "Editor.getHighlightSelectedWord", - "outFile": "editor.html#Editor.getHighlightSelectedWord" - }, - { - "id": "Editor.getKeyboardHandler", - "type": "class method", - "description": "Returns the keyboard handler, such as \"vim\" or \"windows\".", - "short_description": "Returns the keyboard handler, such as \"vim\" or \"windows\".", - "line": 5174, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getKeyboardHandler", - "name_prefix": "Editor.", - "path": "Editor.getKeyboardHandler", - "outFile": "editor.html#Editor.getKeyboardHandler" - }, - { - "id": "Editor.getLastSearchOptions", - "type": "class method", - "description": "{:Search.getOptions} For more information on `options`, see [[Search `Search`]].", - "short_description": "{:Search.getOptions} For more information on `options`, see [[Search `Search`]].", - "line": 7001, - "author": [], - "related": "Search.getOptions", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getLastSearchOptions", - "name_prefix": "Editor.", - "path": "Editor.getLastSearchOptions", - "outFile": "editor.html#Editor.getLastSearchOptions" - }, - { - "id": "Editor.getLastVisibleRow", - "type": "class method", - "description": "{:VirtualRenderer.getLastVisibleRow}", - "short_description": "{:VirtualRenderer.getLastVisibleRow}", - "line": 6527, - "author": [], - "related": "VirtualRenderer.getLastVisibleRow", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getLastVisibleRow", - "name_prefix": "Editor.", - "path": "Editor.getLastVisibleRow", - "outFile": "editor.html#Editor.getLastVisibleRow" - }, - { - "id": "Editor.getOverwrite", - "type": "class method", - "description": "Returns `true` if overwrites are enabled; `false` otherwise.", - "short_description": "Returns `true` if overwrites are enabled; `false` otherwise.", - "line": 5846, - "author": [], - "related": "EditSession.getOverwrite", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getOverwrite", - "name_prefix": "Editor.", - "path": "Editor.getOverwrite", - "outFile": "editor.html#Editor.getOverwrite" - }, - { - "id": "Editor.getPrintMarginColumn", - "type": "class method", - "description": "Returns the column number of where the print margin is.", - "short_description": "Returns the column number of where the print margin is.", - "line": 6060, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getPrintMarginColumn", - "name_prefix": "Editor.", - "path": "Editor.getPrintMarginColumn", - "outFile": "editor.html#Editor.getPrintMarginColumn" - }, - { - "id": "Editor.getReadOnly", - "type": "class method", - "description": "Returns `true` if the editor is set to read-only mode.", - "short_description": "Returns `true` if the editor is set to read-only mode.", - "line": 6079, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getReadOnly", - "name_prefix": "Editor.", - "path": "Editor.getReadOnly", - "outFile": "editor.html#Editor.getReadOnly" - }, - { - "id": "Editor.getScrollSpeed", - "type": "class method", - "description": "Returns the value indicating how fast the mouse scroll speed is.", - "short_description": "Returns the value indicating how fast the mouse scroll speed is.", - "line": 5874, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getScrollSpeed", - "name_prefix": "Editor.", - "path": "Editor.getScrollSpeed", - "outFile": "editor.html#Editor.getScrollSpeed" - }, - { - "id": "Editor.getSelection", - "type": "class method", - "description": "Returns the currently highlighted selection.", - "short_description": "Returns the currently highlighted selection.", - "line": 5338, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "The highlighted selection" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getSelection", - "name_prefix": "Editor.", - "path": "Editor.getSelection", - "outFile": "editor.html#Editor.getSelection" - }, - { - "id": "Editor.getSelectionRange", - "type": "class method", - "description": "{:Selection.getRange}", - "short_description": "{:Selection.getRange}", - "line": 6688, - "author": [], - "related": "Selection.getRange", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getSelectionRange", - "name_prefix": "Editor.", - "path": "Editor.getSelectionRange", - "outFile": "editor.html#Editor.getSelectionRange" - }, - { - "id": "Editor.getSelectionStyle", - "type": "class method", - "description": "Returns the current selection style.", - "short_description": "Returns the current selection style.", - "line": 5928, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getSelectionStyle", - "name_prefix": "Editor.", - "path": "Editor.getSelectionStyle", - "outFile": "editor.html#Editor.getSelectionStyle" - }, - { - "id": "Editor.getSession", - "type": "class method", - "description": "Returns the current session being used.", - "short_description": "Returns the current session being used.", - "line": 5297, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "EditSession", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getSession", - "name_prefix": "Editor.", - "path": "Editor.getSession", - "outFile": "editor.html#Editor.getSession" - }, - { - "id": "Editor.getShowFoldWidgets", - "type": "class method", - "description": "Returns `true` if the fold widgets are shown.", - "short_description": "Returns `true` if the fold widgets are shown.", - "line": 6124, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getShowFoldWidgets", - "name_prefix": "Editor.", - "path": "Editor.getShowFoldWidgets", - "outFile": "editor.html#Editor.getShowFoldWidgets" - }, - { - "id": "Editor.getShowInvisibles", - "type": "class method", - "description": "Returns `true` if invisible characters are being shown.", - "short_description": "Returns `true` if invisible characters are being shown.", - "line": 6015, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getShowInvisibles", - "name_prefix": "Editor.", - "path": "Editor.getShowInvisibles", - "outFile": "editor.html#Editor.getShowInvisibles" - }, - { - "id": "Editor.getShowPrintMargin", - "type": "class method", - "description": "Returns `true` if the print margin is being shown.", - "short_description": "Returns `true` if the print margin is being shown.", - "line": 6041, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getShowPrintMargin", - "name_prefix": "Editor.", - "path": "Editor.getShowPrintMargin", - "outFile": "editor.html#Editor.getShowPrintMargin" - }, - { - "id": "Editor.getTheme", - "type": "class method", - "description": "{:VirtualRenderer.getTheme}", - "short_description": "{:VirtualRenderer.getTheme}", - "line": 5368, - "author": [], - "related": "VirtualRenderer.getTheme", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "The set theme" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getTheme", - "name_prefix": "Editor.", - "path": "Editor.getTheme", - "outFile": "editor.html#Editor.getTheme" - }, - { - "id": "Editor.getValue", - "type": "class method", - "description": "Returns the current session's content.", - "short_description": "Returns the current session's content.", - "line": 5328, - "author": [], - "related": "EditSession.getValue", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "getValue", - "name_prefix": "Editor.", - "path": "Editor.getValue", - "outFile": "editor.html#Editor.getValue" - }, - { - "id": "Editor.gotoLine", - "type": "class method", - "description": "Moves the cursor to the specified line number, and also into the indiciated column.", - "short_description": "Moves the cursor to the specified line number, and also into the indiciated column.", - "line": 6774, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "lineNumber", - "description": "The line number to go to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column number to go to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animates scolling", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "gotoLine", - "name_prefix": "Editor.", - "path": "Editor.gotoLine", - "outFile": "editor.html#Editor.gotoLine" - }, - { - "id": "Editor.gotoPageDown", - "type": "class method", - "description": "Shifts the document to wherever \"page down\" is, as well as moving the cursor position.", - "short_description": "Shifts the document to wherever \"page down\" is, as well as moving the cursor position.", - "line": 6604, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "gotoPageDown", - "name_prefix": "Editor.", - "path": "Editor.gotoPageDown", - "outFile": "editor.html#Editor.gotoPageDown" - }, - { - "id": "Editor.gotoPageUp", - "type": "class method", - "description": "Shifts the document to wherever \"page up\" is, as well as moving the cursor position.", - "short_description": "Shifts the document to wherever \"page up\" is, as well as moving the cursor position.", - "line": 6611, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "gotoPageUp", - "name_prefix": "Editor.", - "path": "Editor.gotoPageUp", - "outFile": "editor.html#Editor.gotoPageUp" - }, - { - "id": "Editor.indent", - "type": "class method", - "description": "Indents the current line.", - "short_description": "Indents the current line.", - "line": 6288, - "author": [], - "related": "EditSession.indentRows", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "indent", - "name_prefix": "Editor.", - "path": "Editor.indent", - "outFile": "editor.html#Editor.indent" - }, - { - "id": "Editor.insert", - "type": "class method", - "description": "Inserts `text` into wherever the cursor is pointing.", - "short_description": "Inserts `text` into wherever the cursor is pointing.", - "line": 5729, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The new text to add", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "insert", - "name_prefix": "Editor.", - "path": "Editor.insert", - "outFile": "editor.html#Editor.insert" - }, - { - "id": "Editor.isFocused", - "type": "class method", - "description": "Returns `true` if the current `textInput` is in focus.", - "short_description": "Returns `true` if the current `textInput` is in focus.", - "line": 5447, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "isFocused", - "name_prefix": "Editor.", - "path": "Editor.isFocused", - "outFile": "editor.html#Editor.isFocused" - }, - { - "id": "Editor.isRowFullyVisible", - "type": "class method", - "description": "Indicates if the entire row is currently visible on the screen.", - "short_description": "Indicates if the entire row is currently visible on the screen.", - "line": 6546, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "isRowFullyVisible", - "name_prefix": "Editor.", - "path": "Editor.isRowFullyVisible", - "outFile": "editor.html#Editor.isRowFullyVisible" - }, - { - "id": "Editor.isRowVisible", - "type": "class method", - "description": "Indicates if the row is currently visible on the screen.", - "short_description": "Indicates if the row is currently visible on the screen.", - "line": 6536, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "isRowVisible", - "name_prefix": "Editor.", - "path": "Editor.isRowVisible", - "outFile": "editor.html#Editor.isRowVisible" - }, - { - "id": "Editor.jumpToMatching", - "type": "class method", - "description": "Moves the cursor's row and column to the next matching bracket.", - "short_description": "Moves the cursor's row and column to the next matching bracket.", - "line": 6739, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "select", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "jumpToMatching", - "name_prefix": "Editor.", - "path": "Editor.jumpToMatching", - "outFile": "editor.html#Editor.jumpToMatching" - }, - { - "id": "Editor.moveCursorTo", - "type": "class method", - "description": "Moves the cursor to the specified row and column. Note that this does not de-select the current selection.", - "short_description": "Moves the cursor to the specified row and column. Note that this does not de-select the current selection.", - "line": 6716, - "author": [], - "related": "Selection.moveCursorTo", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The new row number", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The new column number", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "moveCursorTo", - "name_prefix": "Editor.", - "path": "Editor.moveCursorTo", - "outFile": "editor.html#Editor.moveCursorTo" - }, - { - "id": "Editor.moveCursorToPosition", - "type": "class method", - "description": "Moves the cursor to the position indicated by `pos.row` and `pos.column`.", - "short_description": "Moves the cursor to the position indicated by `pos.row` and `pos.column`.", - "line": 6728, - "author": [], - "related": "Selection.moveCursorToPosition", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "pos", - "description": "An object with two properties, row and column", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "moveCursorToPosition", - "name_prefix": "Editor.", - "path": "Editor.moveCursorToPosition", - "outFile": "editor.html#Editor.moveCursorToPosition" - }, - { - "id": "Editor.moveLinesDown", - "type": "class method", - "description": "Shifts all the selected lines down one row.", - "short_description": "Shifts all the selected lines down one row.", - "line": 6395, - "author": [], - "related": "EditSession.moveLinesUp", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "On success, it returns -1." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "moveLinesDown", - "name_prefix": "Editor.", - "path": "Editor.moveLinesDown", - "outFile": "editor.html#Editor.moveLinesDown" - }, - { - "id": "Editor.moveLinesUp", - "type": "class method", - "description": "Shifts all the selected lines up one row.", - "short_description": "Shifts all the selected lines up one row.", - "line": 6407, - "author": [], - "related": "EditSession.moveLinesDown", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "On success, it returns -1." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "moveLinesUp", - "name_prefix": "Editor.", - "path": "Editor.moveLinesUp", - "outFile": "editor.html#Editor.moveLinesUp" - }, - { - "id": "Editor.moveText", - "type": "class method", - "description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n```json\n { row: newRowLocation, column: newColumnLocation }\n```", - "short_description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n```json\n { row: newRowLocation, column: newColumnLocation }\n```", - "line": 6418, - "author": [], - "related": "EditSession.moveText", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "fromRange", - "description": "The range of text you want moved within the document", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "toPosition", - "description": "The location (row and column) where you want to move the text to", - "types": [ - "Object" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "The new range where the text was moved to." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "moveText", - "name_prefix": "Editor.", - "path": "Editor.moveText", - "outFile": "editor.html#Editor.moveText" - }, - { - "id": "Editor.navigateDown", - "type": "class method", - "description": "Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.", - "short_description": "Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.", - "line": 6818, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "times", - "description": "The number of times to change navigation", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateDown", - "name_prefix": "Editor.", - "path": "Editor.navigateDown", - "outFile": "editor.html#Editor.navigateDown" - }, - { - "id": "Editor.navigateFileEnd", - "type": "class method", - "description": "Moves the cursor to the end of the current file. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the end of the current file. Note that this does de-select the current selection.", - "line": 6888, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateFileEnd", - "name_prefix": "Editor.", - "path": "Editor.navigateFileEnd", - "outFile": "editor.html#Editor.navigateFileEnd" - }, - { - "id": "Editor.navigateFileStart", - "type": "class method", - "description": "Moves the cursor to the start of the current file. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the start of the current file. Note that this does de-select the current selection.", - "line": 6899, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateFileStart", - "name_prefix": "Editor.", - "path": "Editor.navigateFileStart", - "outFile": "editor.html#Editor.navigateFileStart" - }, - { - "id": "Editor.navigateLeft", - "type": "class method", - "description": "Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.", - "short_description": "Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.", - "line": 6830, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "times", - "description": "The number of times to change navigation", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateLeft", - "name_prefix": "Editor.", - "path": "Editor.navigateLeft", - "outFile": "editor.html#Editor.navigateLeft" - }, - { - "id": "Editor.navigateLineEnd", - "type": "class method", - "description": "Moves the cursor to the end of the current line. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the end of the current line. Note that this does de-select the current selection.", - "line": 6879, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateLineEnd", - "name_prefix": "Editor.", - "path": "Editor.navigateLineEnd", - "outFile": "editor.html#Editor.navigateLineEnd" - }, - { - "id": "Editor.navigateLineStart", - "type": "class method", - "description": "Moves the cursor to the start of the current line. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the start of the current line. Note that this does de-select the current selection.", - "line": 6870, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateLineStart", - "name_prefix": "Editor.", - "path": "Editor.navigateLineStart", - "outFile": "editor.html#Editor.navigateLineStart" - }, - { - "id": "Editor.navigateRight", - "type": "class method", - "description": "Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.", - "short_description": "Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.", - "line": 6850, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "times", - "description": "The number of times to change navigation", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateRight", - "name_prefix": "Editor.", - "path": "Editor.navigateRight", - "outFile": "editor.html#Editor.navigateRight" - }, - { - "id": "Editor.navigateTo", - "type": "class method", - "description": "Moves the cursor to the specified row and column. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the specified row and column. Note that this does de-select the current selection.", - "line": 6793, - "author": [], - "related": "Editor.moveCursorTo", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The new row number", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The new column number", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateTo", - "name_prefix": "Editor.", - "path": "Editor.navigateTo", - "outFile": "editor.html#Editor.navigateTo" - }, - { - "id": "Editor.navigateUp", - "type": "class method", - "description": "Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.", - "short_description": "Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.", - "line": 6806, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "times", - "description": "The number of times to change navigation", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateUp", - "name_prefix": "Editor.", - "path": "Editor.navigateUp", - "outFile": "editor.html#Editor.navigateUp" - }, - { - "id": "Editor.navigateWordLeft", - "type": "class method", - "description": "Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.", - "line": 6919, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateWordLeft", - "name_prefix": "Editor.", - "path": "Editor.navigateWordLeft", - "outFile": "editor.html#Editor.navigateWordLeft" - }, - { - "id": "Editor.navigateWordRight", - "type": "class method", - "description": "Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.", - "short_description": "Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.", - "line": 6910, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "navigateWordRight", - "name_prefix": "Editor.", - "path": "Editor.navigateWordRight", - "outFile": "editor.html#Editor.navigateWordRight" - }, - { - "id": "new Editor", - "type": "constructor", - "description": "Creates a new `Editor` object.", - "short_description": "Creates a new `Editor` object.", - "line": 5129, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "renderer", - "description": "Associated `VirtualRenderer` that draws everything", - "types": [ - "VirtualRenderer" - ], - "optional": false - }, - { - "name": "session", - "description": "The `EditSession` to refer to", - "types": [ - "EditSession" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "new", - "name_prefix": "Editor.", - "path": "Editor.new", - "outFile": "editor.html#Editor.new" - }, - { - "id": "Editor.onCopy", - "type": "class method", - "description": "Called whenever a text \"copy\" happens.", - "short_description": "Called whenever a text \"copy\" happens.", - "line": 5694, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "onCopy", - "name_prefix": "Editor.", - "path": "Editor.onCopy", - "outFile": "editor.html#Editor.onCopy" - }, - { - "id": "Editor.onCursorChange", - "type": "class method", - "description": "Emitted when the selection changes.", - "short_description": "Emitted when the selection changes.", - "line": 5536, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "onCursorChange", - "name_prefix": "Editor.", - "path": "Editor.onCursorChange", - "outFile": "editor.html#Editor.onCursorChange" - }, - { - "id": "Editor.onCut", - "type": "class method", - "description": "Called whenever a text \"cut\" happens.", - "short_description": "Called whenever a text \"cut\" happens.", - "line": 5701, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "onCut", - "name_prefix": "Editor.", - "path": "Editor.onCut", - "outFile": "editor.html#Editor.onCut" - }, - { - "id": "Editor.onPaste", - "type": "class method", - "description": "Called whenever a text \"paste\" happens.", - "short_description": "Called whenever a text \"paste\" happens.", - "line": 5715, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The pasted text", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "onPaste", - "name_prefix": "Editor.", - "path": "Editor.onPaste", - "outFile": "editor.html#Editor.onPaste" - }, - { - "id": "Editor.redo", - "type": "class method", - "description": "{:UndoManager.redo}", - "short_description": "{:UndoManager.redo}", - "line": 7105, - "author": [], - "related": "UndoManager.redo", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "redo", - "name_prefix": "Editor.", - "path": "Editor.redo", - "outFile": "editor.html#Editor.redo" - }, - { - "id": "Editor.remove", - "type": "class method", - "description": "Removes words of text from the editor. A \"word\" is defined as a string of characters bookended by whitespace.", - "short_description": "Removes words of text from the editor. A \"word\" is defined as a string of characters bookended by whitespace.", - "line": 6140, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dir", - "description": "The direction of the deletion to occur, either \"left\" or \"right\"", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "remove", - "name_prefix": "Editor.", - "path": "Editor.remove", - "outFile": "editor.html#Editor.remove" - }, - { - "id": "Editor.removeLines", - "type": "class method", - "description": "Removes all the lines in the current selection", - "short_description": "Removes all the lines in the current selection", - "line": 6359, - "author": [], - "related": "EditSession.remove", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "removeLines", - "name_prefix": "Editor.", - "path": "Editor.removeLines", - "outFile": "editor.html#Editor.removeLines" - }, - { - "id": "Editor.removeToLineEnd", - "type": "class method", - "description": "Removes all the words to the right of the current selection, until the end of the line.", - "short_description": "Removes all the words to the right of the current selection, until the end of the line.", - "line": 6201, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "removeToLineEnd", - "name_prefix": "Editor.", - "path": "Editor.removeToLineEnd", - "outFile": "editor.html#Editor.removeToLineEnd" - }, - { - "id": "Editor.removeToLineStart", - "type": "class method", - "description": "Removes all the words to the left of the current selection, until the start of the line.", - "short_description": "Removes all the words to the left of the current selection, until the start of the line.", - "line": 6190, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "removeToLineStart", - "name_prefix": "Editor.", - "path": "Editor.removeToLineStart", - "outFile": "editor.html#Editor.removeToLineStart" - }, - { - "id": "Editor.removeWordLeft", - "type": "class method", - "description": "Removes the word directly to the left of the current selection.", - "short_description": "Removes the word directly to the left of the current selection.", - "line": 6179, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "removeWordLeft", - "name_prefix": "Editor.", - "path": "Editor.removeWordLeft", - "outFile": "editor.html#Editor.removeWordLeft" - }, - { - "id": "Editor.removeWordRight", - "type": "class method", - "description": "Removes the word directly to the right of the current selection.", - "short_description": "Removes the word directly to the right of the current selection.", - "line": 6168, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "removeWordRight", - "name_prefix": "Editor.", - "path": "Editor.removeWordRight", - "outFile": "editor.html#Editor.removeWordRight" - }, - { - "id": "Editor.replace", - "type": "class method", - "description": "Replaces the first occurance of `options.needle` with the value in `replacement`.", - "short_description": "Replaces the first occurance of `options.needle` with the value in `replacement`.", - "line": 6928, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "replacement", - "description": "The text to replace with", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "options", - "description": "The [[Search `Search`]] options to use", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "replace", - "name_prefix": "Editor.", - "path": "Editor.replace", - "outFile": "editor.html#Editor.replace" - }, - { - "id": "Editor.replaceAll", - "type": "class method", - "description": "Replaces all occurances of `options.needle` with the value in `replacement`.", - "short_description": "Replaces all occurances of `options.needle` with the value in `replacement`.", - "line": 6955, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "replacement", - "description": "The text to replace with", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "options", - "description": "The [[Search `Search`]] options to use", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "replaceAll", - "name_prefix": "Editor.", - "path": "Editor.replaceAll", - "outFile": "editor.html#Editor.replaceAll" - }, - { - "id": "Editor.resize", - "type": "class method", - "description": "{:VirtualRenderer.onResize}", - "short_description": "{:VirtualRenderer.onResize}", - "line": 5347, - "author": [], - "related": "VirtualRenderer.onResize", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "force", - "description": "If `true`, recomputes the size, even if the height and width haven't changed", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "resize", - "name_prefix": "Editor.", - "path": "Editor.resize", - "outFile": "editor.html#Editor.resize" - }, - { - "id": "Editor.scrollPageDown", - "type": "class method", - "description": "Scrolls the document to wherever \"page down\" is, without changing the cursor position.", - "short_description": "Scrolls the document to wherever \"page down\" is, without changing the cursor position.", - "line": 6618, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "scrollPageDown", - "name_prefix": "Editor.", - "path": "Editor.scrollPageDown", - "outFile": "editor.html#Editor.scrollPageDown" - }, - { - "id": "Editor.scrollPageUp", - "type": "class method", - "description": "Scrolls the document to wherever \"page up\" is, without changing the cursor position.", - "short_description": "Scrolls the document to wherever \"page up\" is, without changing the cursor position.", - "line": 6625, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "scrollPageUp", - "name_prefix": "Editor.", - "path": "Editor.scrollPageUp", - "outFile": "editor.html#Editor.scrollPageUp" - }, - { - "id": "Editor.scrollToLine", - "type": "class method", - "description": "Scrolls to a line. If `center` is `true`, it puts the line in middle of screen (or attempts to).", - "short_description": "Scrolls to a line. If `center` is `true`, it puts the line in middle of screen (or attempts to).", - "line": 6640, - "author": [], - "related": "VirtualRenderer.scrollToLine", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "line", - "description": "The line to scroll to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "center", - "description": "If `true`", - "types": [ - "Boolean" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animates scrolling", - "types": [ - "Boolean" - ], - "optional": false - }, - { - "name": "callback", - "description": "Function to be called when the animation has finished", - "types": [ - "Function" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "scrollToLine", - "name_prefix": "Editor.", - "path": "Editor.scrollToLine", - "outFile": "editor.html#Editor.scrollToLine" - }, - { - "id": "Editor.scrollToRow", - "type": "class method", - "description": "Moves the editor to the specified row.", - "short_description": "Moves the editor to the specified row.", - "line": 6632, - "author": [], - "related": "VirtualRenderer.scrollToRow", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "scrollToRow", - "name_prefix": "Editor.", - "path": "Editor.scrollToRow", - "outFile": "editor.html#Editor.scrollToRow" - }, - { - "id": "Editor.selectAll", - "type": "class method", - "description": "Selects all the text in editor.", - "short_description": "Selects all the text in editor.", - "line": 6698, - "author": [], - "related": "Selection.selectAll", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "selectAll", - "name_prefix": "Editor.", - "path": "Editor.selectAll", - "outFile": "editor.html#Editor.selectAll" - }, - { - "id": "Editor.selectPageDown", - "type": "class method", - "description": "Selects the text from the current position of the document until where a \"page down\" finishes.", - "short_description": "Selects the text from the current position of the document until where a \"page down\" finishes.", - "line": 6590, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "selectPageDown", - "name_prefix": "Editor.", - "path": "Editor.selectPageDown", - "outFile": "editor.html#Editor.selectPageDown" - }, - { - "id": "Editor.selectPageUp", - "type": "class method", - "description": "Selects the text from the current position of the document until where a \"page up\" finishes.", - "short_description": "Selects the text from the current position of the document until where a \"page up\" finishes.", - "line": 6597, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "selectPageUp", - "name_prefix": "Editor.", - "path": "Editor.selectPageUp", - "outFile": "editor.html#Editor.selectPageUp" - }, - { - "id": "Editor.setBehavioursEnabled", - "type": "class method", - "description": "Specifies whether to use behaviors or not. [\"Behaviors\" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef}", - "short_description": "Specifies whether to use behaviors or not. [\"Behaviors\" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef}", - "line": 6089, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "enabled", - "description": "Enables or disables behaviors", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setBehavioursEnabled", - "name_prefix": "Editor.", - "path": "Editor.setBehavioursEnabled", - "outFile": "editor.html#Editor.setBehavioursEnabled" - }, - { - "id": "Editor.setDragDelay", - "type": "class method", - "description": "Sets the delay (in milliseconds) of the mouse drag.", - "short_description": "Sets the delay (in milliseconds) of the mouse drag.", - "line": 5882, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dragDelay", - "description": "A value indicating the new delay", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setDragDelay", - "name_prefix": "Editor.", - "path": "Editor.setDragDelay", - "outFile": "editor.html#Editor.setDragDelay" - }, - { - "id": "Editor.setFontSize", - "type": "class method", - "description": "Set a new font size (in pixels) for the editor text.", - "short_description": "Set a new font size (in pixels) for the editor text.", - "line": 5397, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "size", - "description": "A font size", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setFontSize", - "name_prefix": "Editor.", - "path": "Editor.setFontSize", - "outFile": "editor.html#Editor.setFontSize" - }, - { - "id": "Editor.setHighlightActiveLine", - "type": "class method", - "description": "Determines whether or not the current line should be highlighted.", - "short_description": "Determines whether or not the current line should be highlighted.", - "line": 5938, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "shouldHighlight", - "description": "Set to `true` to highlight the current line", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setHighlightActiveLine", - "name_prefix": "Editor.", - "path": "Editor.setHighlightActiveLine", - "outFile": "editor.html#Editor.setHighlightActiveLine" - }, - { - "id": "Editor.setHighlightSelectedWord", - "type": "class method", - "description": "Determines if the currently selected word should be highlighted.", - "short_description": "Determines if the currently selected word should be highlighted.", - "line": 5975, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "shouldHighlight", - "description": "Set to `true` to highlight the currently selected word", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setHighlightSelectedWord", - "name_prefix": "Editor.", - "path": "Editor.setHighlightSelectedWord", - "outFile": "editor.html#Editor.setHighlightSelectedWord" - }, - { - "id": "Editor.setKeyboardHandler", - "type": "class method", - "description": "Sets a new key handler, such as \"vim\" or \"windows\".", - "short_description": "Sets a new key handler, such as \"vim\" or \"windows\".", - "line": 5164, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "keyboardHandler", - "description": "The new key handler", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setKeyboardHandler", - "name_prefix": "Editor.", - "path": "Editor.setKeyboardHandler", - "outFile": "editor.html#Editor.setKeyboardHandler" - }, - { - "id": "Editor.setOverwrite", - "type": "class method", - "description": "Pass in `true` to enable overwrites in your session, or `false` to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", - "short_description": "Pass in `true` to enable overwrites in your session, or `false` to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", - "line": 5835, - "author": [], - "related": "EditSession.setOverwrite", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "overwrite", - "description": "Defines wheter or not to set overwrites", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setOverwrite", - "name_prefix": "Editor.", - "path": "Editor.setOverwrite", - "outFile": "editor.html#Editor.setOverwrite" - }, - { - "id": "Editor.setPrintMarginColumn", - "type": "class method", - "description": "Sets the column defining where the print margin should be.", - "short_description": "Sets the column defining where the print margin should be.", - "line": 6049, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showPrintMargin", - "description": "Specifies the new print margin", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setPrintMarginColumn", - "name_prefix": "Editor.", - "path": "Editor.setPrintMarginColumn", - "outFile": "editor.html#Editor.setPrintMarginColumn" - }, - { - "id": "Editor.setReadOnly", - "type": "class method", - "description": "If `readOnly` is true, then the editor is set to read-only mode, and none of the content can change.", - "short_description": "If `readOnly` is true, then the editor is set to read-only mode, and none of the content can change.", - "line": 6069, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "readOnly", - "description": "Specifies whether the editor can be modified or not", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setReadOnly", - "name_prefix": "Editor.", - "path": "Editor.setReadOnly", - "outFile": "editor.html#Editor.setReadOnly" - }, - { - "id": "Editor.setScrollSpeed", - "type": "class method", - "description": "Sets how fast the mouse scrolling should do.", - "short_description": "Sets how fast the mouse scrolling should do.", - "line": 5863, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "speed", - "description": "A value indicating the new speed", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setScrollSpeed", - "name_prefix": "Editor.", - "path": "Editor.setScrollSpeed", - "outFile": "editor.html#Editor.setScrollSpeed" - }, - { - "id": "Editor.setSelectionStyle", - "type": "class method", - "description": "Indicates how selections should occur. \n\nBy default, selections are set to \"line\". This function also emits the `'changeSelectionStyle'` event.", - "short_description": "Indicates how selections should occur. \n", - "line": 5911, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "style", - "description": "The new selection style", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setSelectionStyle", - "name_prefix": "Editor.", - "path": "Editor.setSelectionStyle", - "outFile": "editor.html#Editor.setSelectionStyle" - }, - { - "id": "Editor.setSession", - "type": "class method", - "description": "Sets a new editsession to use. This method also emits the `'changeSession'` event.", - "short_description": "Sets a new editsession to use. This method also emits the `'changeSession'` event.", - "line": 5192, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The new session to use", - "types": [ - "EditSession" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setSession", - "name_prefix": "Editor.", - "path": "Editor.setSession", - "outFile": "editor.html#Editor.setSession" - }, - { - "id": "Editor.setShowFoldWidgets", - "type": "class method", - "description": "Indicates whether the fold widgets are shown or not.", - "short_description": "Indicates whether the fold widgets are shown or not.", - "line": 6108, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "show", - "description": "Specifies whether the fold widgets are shown", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setShowFoldWidgets", - "name_prefix": "Editor.", - "path": "Editor.setShowFoldWidgets", - "outFile": "editor.html#Editor.setShowFoldWidgets" - }, - { - "id": "Editor.setShowInvisibles", - "type": "class method", - "description": "If `showInvisibiles` is set to `true`, invisible characters—like spaces or new lines—are show in the editor.", - "short_description": "If `showInvisibiles` is set to `true`, invisible characters—like spaces or new lines—are show in the editor.", - "line": 6005, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showInvisibles", - "description": "Specifies whether or not to show invisible characters", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setShowInvisibles", - "name_prefix": "Editor.", - "path": "Editor.setShowInvisibles", - "outFile": "editor.html#Editor.setShowInvisibles" - }, - { - "id": "Editor.setShowPrintMargin", - "type": "class method", - "description": "If `showPrintMargin` is set to `true`, the print margin is shown in the editor.", - "short_description": "If `showPrintMargin` is set to `true`, the print margin is shown in the editor.", - "line": 6031, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showPrintMargin", - "description": "Specifies whether or not to show the print margin", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setShowPrintMargin", - "name_prefix": "Editor.", - "path": "Editor.setShowPrintMargin", - "outFile": "editor.html#Editor.setShowPrintMargin" - }, - { - "id": "Editor.setStyle", - "type": "class method", - "description": "{:VirtualRenderer.setStyle}", - "short_description": "{:VirtualRenderer.setStyle}", - "line": 5378, - "author": [], - "related": "VirtualRenderer.setStyle", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "style", - "description": "A class name", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setStyle", - "name_prefix": "Editor.", - "path": "Editor.setStyle", - "outFile": "editor.html#Editor.setStyle" - }, - { - "id": "Editor.setTheme", - "type": "class method", - "description": "{:VirtualRenderer.setTheme}", - "short_description": "{:VirtualRenderer.setTheme}", - "line": 5358, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "theme", - "description": "The path to a theme", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setTheme", - "name_prefix": "Editor.", - "path": "Editor.setTheme", - "outFile": "editor.html#Editor.setTheme" - }, - { - "id": "Editor.setValue", - "type": "class method", - "description": "Sets the current document to `val`.", - "short_description": "Sets the current document to `val`.", - "line": 5305, - "author": [], - "related": "Document.setValue", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "val", - "description": "The new value to set for the document", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "cursorPos", - "description": "Where to set the new value. `undefined` or 0 is selectAll, -1 is at the document start, and 1 is at the end", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "description": "The current document value" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "setValue", - "name_prefix": "Editor.", - "path": "Editor.setValue", - "outFile": "editor.html#Editor.setValue" - }, - { - "id": "Editor.splitLine", - "type": "class method", - "description": "Splits the line at the current selection (by inserting an `'\\n'`).", - "short_description": "Splits the line at the current selection (by inserting an `'\\n'`).", - "line": 6218, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "splitLine", - "name_prefix": "Editor.", - "path": "Editor.splitLine", - "outFile": "editor.html#Editor.splitLine" - }, - { - "id": "Editor.toggleCommentLines", - "type": "class method", - "description": "Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).", - "short_description": "Given the currently selected range, this function either comments all lines or uncomments all lines (depending on whether it's commented or not).", - "line": 6350, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "toggleCommentLines", - "name_prefix": "Editor.", - "path": "Editor.toggleCommentLines", - "outFile": "editor.html#Editor.toggleCommentLines" - }, - { - "id": "Editor.toggleOverwrite", - "type": "class method", - "description": "Sets the value of overwrite to the opposite of whatever it currently is.", - "short_description": "Sets the value of overwrite to the opposite of whatever it currently is.", - "line": 5855, - "author": [], - "related": "EditSession.toggleOverwrite", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "toggleOverwrite", - "name_prefix": "Editor.", - "path": "Editor.toggleOverwrite", - "outFile": "editor.html#Editor.toggleOverwrite" - }, - { - "id": "Editor.toLowerCase", - "type": "class method", - "description": "Converts the current selection entirely into lowercase.", - "short_description": "Converts the current selection entirely into lowercase.", - "line": 6258, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "toLowerCase", - "name_prefix": "Editor.", - "path": "Editor.toLowerCase", - "outFile": "editor.html#Editor.toLowerCase" - }, - { - "id": "Editor.toUpperCase", - "type": "class method", - "description": "Converts the current selection entirely into uppercase.", - "short_description": "Converts the current selection entirely into uppercase.", - "line": 6273, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "toUpperCase", - "name_prefix": "Editor.", - "path": "Editor.toUpperCase", - "outFile": "editor.html#Editor.toUpperCase" - }, - { - "id": "Editor.transposeLetters", - "type": "class method", - "description": "Transposes current line.", - "short_description": "Transposes current line.", - "line": 6232, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "transposeLetters", - "name_prefix": "Editor.", - "path": "Editor.transposeLetters", - "outFile": "editor.html#Editor.transposeLetters" - }, - { - "id": "Editor.undo", - "type": "class method", - "description": "{:UndoManager.undo}", - "short_description": "{:UndoManager.undo}", - "line": 7094, - "author": [], - "related": "UndoManager.undo", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "undo", - "name_prefix": "Editor.", - "path": "Editor.undo", - "outFile": "editor.html#Editor.undo" - }, - { - "id": "Editor.unsetStyle", - "type": "class method", - "description": "{:VirtualRenderer.unsetStyle}", - "short_description": "{:VirtualRenderer.unsetStyle}", - "line": 5389, - "author": [], - "related": "VirtualRenderer.unsetStyle", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "style", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "unsetStyle", - "name_prefix": "Editor.", - "path": "Editor.unsetStyle", - "outFile": "editor.html#Editor.unsetStyle" - }, - { - "id": "Editor@blur", - "type": "event", - "description": "Emitted once the editor has been blurred.", - "short_description": "Emitted once the editor has been blurred.", - "line": 5478, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "blur", - "name_prefix": "Editor@", - "path": "Editor.event.blur", - "outFile": "editor.html#Editor.event.blur" - }, - { - "id": "Editor@change", - "type": "event", - "description": "Emitted whenever the document is changed.", - "short_description": "Emitted whenever the document is changed.", - "line": 5497, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "Contains a single property, `data`, which has the delta of changes", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "change", - "name_prefix": "Editor@", - "path": "Editor.event.change", - "outFile": "editor.html#Editor.event.change" - }, - { - "id": "Editor@changeSelectionStyle", - "type": "event", - "description": "Emitted when the selection style changes, via [[Editor.setSelectionStyle]].", - "short_description": "Emitted when the selection style changes, via [[Editor.setSelectionStyle]].", - "line": 5903, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "data", - "description": "Contains one property, `data`, which indicates the new selection style", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "changeSelectionStyle", - "name_prefix": "Editor@", - "path": "Editor.event.changeSelectionStyle", - "outFile": "editor.html#Editor.event.changeSelectionStyle" - }, - { - "id": "Editor@changeSession", - "type": "event", - "description": "Emitted whenever the [[EditSession]] changes.", - "short_description": "Emitted whenever the [[EditSession]] changes.", - "line": 5185, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "An object with two properties, `oldSession` and `session`, that represent the old and new [[EditSession]]s.", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "changeSession", - "name_prefix": "Editor@", - "path": "Editor.event.changeSession", - "outFile": "editor.html#Editor.event.changeSession" - }, - { - "id": "Editor@copy", - "type": "event", - "description": "Emitted when text is copied.", - "short_description": "Emitted when text is copied.", - "line": 5672, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The copied text", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "copy", - "name_prefix": "Editor@", - "path": "Editor.event.copy", - "outFile": "editor.html#Editor.event.copy" - }, - { - "id": "Editor@focus", - "type": "event", - "description": "Emitted once the editor comes into focus.", - "short_description": "Emitted once the editor comes into focus.", - "line": 5463, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "focus", - "name_prefix": "Editor@", - "path": "Editor.event.focus", - "outFile": "editor.html#Editor.event.focus" - }, - { - "id": "Editor@paste", - "type": "event", - "description": "Emitted when text is pasted.", - "short_description": "Emitted when text is pasted.", - "line": 5708, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The pasted text", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "name": "paste", - "name_prefix": "Editor@", - "path": "Editor.event.paste", - "outFile": "editor.html#Editor.event.paste" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/editor.js", - "subclasses": [], - "name": "Editor", - "path": "Editor", - "outFile": "editor.html" - }, - { - "id": "EditSession", - "type": "class", - "description": "Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. \n\n`EditSession` can be attached to only one [[Document `Document`]]. Same `Document` can be attached to several `EditSession`s.", - "short_description": "Stores all the data about [[Editor `Editor`]] state providing easy way to change editors state. \n", - "line": 1530, - "author": [], - "aliases": [], - "children": [ - { - "id": "EditSession.$detectNewLine", - "type": "class method", - "description": "If `text` contains either the newline (`\\n`) or carriage-return ('\\r') characters, `$autoNewLine` stores that value.", - "short_description": "If `text` contains either the newline (`\\n`) or carriage-return ('\\r') characters, `$autoNewLine` stores that value.", - "line": 2234, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "A block of text", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "$detectNewLine", - "name_prefix": "EditSession.", - "path": "EditSession.$detectNewLine", - "outFile": "edit_session.html#EditSession.$detectNewLine" - }, - { - "id": "EditSession.$getDisplayTokens", - "type": "class method", - "description": "Given a string, returns an array of the display characters, including tabs and spaces.", - "short_description": "Given a string, returns an array of the display characters, including tabs and spaces.", - "line": 3446, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "str", - "description": "The string to check", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "offset", - "description": "The value to start at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "$getDisplayTokens", - "name_prefix": "EditSession.", - "path": "EditSession.$getDisplayTokens", - "outFile": "edit_session.html#EditSession.$getDisplayTokens" - }, - { - "id": "EditSession.$getStringScreenWidth", - "type": "class method", - "description": "Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen.", - "short_description": "Calculates the width of the string `str` on the screen while assuming that the string starts at the first column on the screen.", - "line": 3484, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "str", - "description": "The string to calculate the screen width of", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "maxScreenColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "screenColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "isArray": true, - "description": "Returns an `int[]` array with two elements:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nThe first position indicates the number of columns for `str` on screen.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nThe second value contains the position of the document column that this function read until." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "$getStringScreenWidth", - "name_prefix": "EditSession.", - "path": "EditSession.$getStringScreenWidth", - "outFile": "edit_session.html#EditSession.$getStringScreenWidth" - }, - { - "id": "EditSession.$mode", - "type": "class method", - "description": "Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted.", - "short_description": "Sets a new text mode for the `EditSession`. This method also emits the `'changeMode'` event. If a [[BackgroundTokenizer `BackgroundTokenizer`]] is set, the `'tokenizerUpdate'` event is also emitted.", - "line": 2427, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "mode", - "description": "Set a new text mode", - "types": [ - "TextMode" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "$mode", - "name_prefix": "EditSession.", - "path": "EditSession.$mode", - "outFile": "edit_session.html#EditSession.$mode" - }, - { - "id": "EditSession.$resetRowCache", - "type": "class method", - "incomplete": true, - "line": 1700, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to work with", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "$resetRowCache", - "name_prefix": "EditSession.", - "path": "EditSession.$resetRowCache", - "outFile": "edit_session.html#EditSession.$resetRowCache" - }, - { - "id": "EditSession.addDynamicMarker", - "type": "class method", - "description": "Adds a dynamic marker to the session.", - "short_description": "Adds a dynamic marker to the session.", - "line": 2144, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "marker", - "description": "object with update method", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "inFront", - "description": "Set to `true` to establish a front marker", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "addDynamicMarker", - "name_prefix": "EditSession.", - "path": "EditSession.addDynamicMarker", - "outFile": "edit_session.html#EditSession.addDynamicMarker" - }, - { - "id": "EditSession.addGutterDecoration", - "type": "class method", - "description": "Adds `className` to the `row`, to be used for CSS stylings and whatnot.", - "short_description": "Adds `className` to the `row`, to be used for CSS stylings and whatnot.", - "line": 2026, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "className", - "description": "The class to add", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "addGutterDecoration", - "name_prefix": "EditSession.", - "path": "EditSession.addGutterDecoration", - "outFile": "edit_session.html#EditSession.addGutterDecoration" - }, - { - "id": "EditSession.addMarker", - "type": "class method", - "description": "Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires.", - "short_description": "Adds a new marker to the given `Range`. If `inFront` is `true`, a front marker is defined, and the `'changeFrontMarker'` event fires; otherwise, the `'changeBackMarker'` event fires.", - "line": 2111, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "Define the range of the marker", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "clazz", - "description": "Set the CSS class for the marker", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "type", - "description": "Identify the type of the marker", - "types": [ - "Function", - "String" - ], - "optional": false - }, - { - "name": "inFront", - "description": "Set to `true` to establish a front marker", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "addMarker", - "name_prefix": "EditSession.", - "path": "EditSession.addMarker", - "outFile": "edit_session.html#EditSession.addMarker" - }, - { - "id": "EditSession.adjustWrapLimit", - "type": "class method", - "description": "This should generally only be called by the renderer when a resize is detected.", - "short_description": "This should generally only be called by the renderer when a resize is detected.", - "line": 3085, - "private": true, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "desiredLimit", - "description": "The new wrap limit", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "adjustWrapLimit", - "name_prefix": "EditSession.", - "path": "EditSession.adjustWrapLimit", - "outFile": "edit_session.html#EditSession.adjustWrapLimit" - }, - { - "id": "EditSession.clearAnnotations", - "type": "class method", - "description": "Clears all the annotations for this session. This function also triggers the `'changeAnnotation'` event.", - "short_description": "Clears all the annotations for this session. This function also triggers the `'changeAnnotation'` event.", - "line": 2226, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "clearAnnotations", - "name_prefix": "EditSession.", - "path": "EditSession.clearAnnotations", - "outFile": "edit_session.html#EditSession.clearAnnotations" - }, - { - "id": "EditSession.clearBreakpoint", - "type": "class method", - "description": "Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "short_description": "Removes a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "line": 2100, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row index", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "clearBreakpoint", - "name_prefix": "EditSession.", - "path": "EditSession.clearBreakpoint", - "outFile": "edit_session.html#EditSession.clearBreakpoint" - }, - { - "id": "EditSession.clearBreakpoints", - "type": "class method", - "description": "Removes all breakpoints on the rows. This function also emites the `'changeBreakpoint'` event.", - "short_description": "Removes all breakpoints on the rows. This function also emites the `'changeBreakpoint'` event.", - "line": 2075, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "clearBreakpoints", - "name_prefix": "EditSession.", - "path": "EditSession.clearBreakpoints", - "outFile": "edit_session.html#EditSession.clearBreakpoints" - }, - { - "id": "EditSession.documentToScreenColumn", - "type": "class method", - "description": "For the given document row and column, returns the screen column.", - "short_description": "For the given document row and column, returns the screen column.", - "line": 3796, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "docColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "documentToScreenColumn", - "name_prefix": "EditSession.", - "path": "EditSession.documentToScreenColumn", - "outFile": "edit_session.html#EditSession.documentToScreenColumn" - }, - { - "id": "EditSession.documentToScreenPosition", - "type": "class method", - "description": "Converts document coordinates to screen coordinates. {:conversionConsiderations}", - "short_description": "Converts document coordinates to screen coordinates. {:conversionConsiderations}", - "line": 3699, - "author": [], - "related": "EditSession.screenToDocumentPosition", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "docRow", - "description": "The document row to check", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "docColumn", - "description": "The document column to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "The object returned by this method has two properties: `row` and `column`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "documentToScreenPosition", - "name_prefix": "EditSession.", - "path": "EditSession.documentToScreenPosition", - "outFile": "edit_session.html#EditSession.documentToScreenPosition" - }, - { - "id": "EditSession.documentToScreenRow", - "type": "class method", - "description": "For the given document row and column, returns the screen row.", - "short_description": "For the given document row and column, returns the screen row.", - "line": 3807, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "docRow", - "description": "", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "docColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "documentToScreenRow", - "name_prefix": "EditSession.", - "path": "EditSession.documentToScreenRow", - "outFile": "edit_session.html#EditSession.documentToScreenRow" - }, - { - "id": "EditSession.duplicateLines", - "type": "class method", - "description": "Duplicates all the text between `firstRow` and `lastRow`.", - "short_description": "Duplicates all the text between `firstRow` and `lastRow`.", - "line": 2945, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The starting row to duplicate", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row to duplicate", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "Returns the number of new rows added; in other words, `lastRow - firstRow + 1`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "duplicateLines", - "name_prefix": "EditSession.", - "path": "EditSession.duplicateLines", - "outFile": "edit_session.html#EditSession.duplicateLines" - }, - { - "id": "EditSession.getAnnotations", - "type": "class method", - "description": "Returns the annotations for the `EditSession`.", - "short_description": "Returns the annotations for the `EditSession`.", - "line": 2218, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getAnnotations", - "name_prefix": "EditSession.", - "path": "EditSession.getAnnotations", - "outFile": "edit_session.html#EditSession.getAnnotations" - }, - { - "id": "EditSession.getAWordRange", - "type": "class method", - "description": "Gets the range of a word, including its right whitespace.", - "short_description": "Gets the range of a word, including its right whitespace.", - "line": 2290, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number to start from", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column number to start from", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getAWordRange", - "name_prefix": "EditSession.", - "path": "EditSession.getAWordRange", - "outFile": "edit_session.html#EditSession.getAWordRange" - }, - { - "id": "EditSession.getBreakpoints", - "type": "class method", - "description": "Returns an array of numbers, indicating which rows have breakpoints.", - "short_description": "Returns an array of numbers, indicating which rows have breakpoints.", - "line": 2052, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getBreakpoints", - "name_prefix": "EditSession.", - "path": "EditSession.getBreakpoints", - "outFile": "edit_session.html#EditSession.getBreakpoints" - }, - { - "id": "EditSession.getDocument", - "type": "class method", - "description": "Returns the `Document` associated with this session.", - "short_description": "Returns the `Document` associated with this session.", - "line": 1692, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Document", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getDocument", - "name_prefix": "EditSession.", - "path": "EditSession.getDocument", - "outFile": "edit_session.html#EditSession.getDocument" - }, - { - "id": "EditSession.getDocumentLastRowColumn", - "type": "class method", - "description": "For the given document row and column, this returns the column position of the last screen row.", - "short_description": "For the given document row and column, this returns the column position of the last screen row.", - "line": 3551, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "docRow", - "description": "", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "docColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getDocumentLastRowColumn", - "name_prefix": "EditSession.", - "path": "EditSession.getDocumentLastRowColumn", - "outFile": "edit_session.html#EditSession.getDocumentLastRowColumn" - }, - { - "id": "EditSession.getDocumentLastRowColumnPosition", - "type": "class method", - "description": "For the given document row and column, this returns the document position of the last row.", - "short_description": "For the given document row and column, this returns the document position of the last row.", - "line": 3562, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "docRow", - "description": "", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "docColumn", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getDocumentLastRowColumnPosition", - "name_prefix": "EditSession.", - "path": "EditSession.getDocumentLastRowColumnPosition", - "outFile": "edit_session.html#EditSession.getDocumentLastRowColumnPosition" - }, - { - "id": "EditSession.getLength", - "type": "class method", - "description": "Returns the number of rows in the document.", - "short_description": "Returns the number of rows in the document.", - "line": 2631, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getLength", - "name_prefix": "EditSession.", - "path": "EditSession.getLength", - "outFile": "edit_session.html#EditSession.getLength" - }, - { - "id": "EditSession.getLine", - "type": "class method", - "description": "Returns a verbatim copy of the given line as it is in the document", - "short_description": "Returns a verbatim copy of the given line as it is in the document", - "line": 2607, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to retrieve from", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getLine", - "name_prefix": "EditSession.", - "path": "EditSession.getLine", - "outFile": "edit_session.html#EditSession.getLine" - }, - { - "id": "EditSession.getLines", - "type": "class method", - "description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", - "short_description": "Returns an array of strings of the rows between `firstRow` and `lastRow`. This function is inclusive of `lastRow`.", - "line": 2619, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The first row index to retrieve", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row index to retrieve", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getLines", - "name_prefix": "EditSession.", - "path": "EditSession.getLines", - "outFile": "edit_session.html#EditSession.getLines" - }, - { - "id": "EditSession.getMarkers", - "type": "class method", - "description": "Returns an array containing the IDs of all the markers, either front or back.", - "short_description": "Returns an array containing the IDs of all the markers, either front or back.", - "line": 2189, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "inFront", - "description": "If `true`, indicates you only want front markers; `false` indicates only back markers", - "types": [ - "Boolean" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Array", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getMarkers", - "name_prefix": "EditSession.", - "path": "EditSession.getMarkers", - "outFile": "edit_session.html#EditSession.getMarkers" - }, - { - "id": "EditSession.getMode", - "type": "class method", - "description": "Returns the current text mode.", - "short_description": "Returns the current text mode.", - "line": 2512, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "TextMode", - "description": "The current text mode" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getMode", - "name_prefix": "EditSession.", - "path": "EditSession.getMode", - "outFile": "edit_session.html#EditSession.getMode" - }, - { - "id": "EditSession.getNewLineMode", - "type": "class method", - "description": "Returns the current new line mode.", - "short_description": "Returns the current new line mode.", - "line": 2318, - "author": [], - "related": "Document.getNewLineMode", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getNewLineMode", - "name_prefix": "EditSession.", - "path": "EditSession.getNewLineMode", - "outFile": "edit_session.html#EditSession.getNewLineMode" - }, - { - "id": "EditSession.getOverwrite", - "type": "class method", - "description": "Returns `true` if overwrites are enabled; `false` otherwise.", - "short_description": "Returns `true` if overwrites are enabled; `false` otherwise.", - "line": 2012, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getOverwrite", - "name_prefix": "EditSession.", - "path": "EditSession.getOverwrite", - "outFile": "edit_session.html#EditSession.getOverwrite" - }, - { - "id": "EditSession.getRowLength", - "type": "class method", - "description": "Returns number of screenrows in a wrapped line.", - "short_description": "Returns number of screenrows in a wrapped line.", - "line": 3525, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getRowLength", - "name_prefix": "EditSession.", - "path": "EditSession.getRowLength", - "outFile": "edit_session.html#EditSession.getRowLength" - }, - { - "id": "EditSession.getRowSplitData", - "type": "class method", - "description": "For the given row, this returns the split data.", - "short_description": "For the given row, this returns the split data.", - "line": 3574, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getRowSplitData", - "name_prefix": "EditSession.", - "path": "EditSession.getRowSplitData", - "outFile": "edit_session.html#EditSession.getRowSplitData" - }, - { - "id": "EditSession.getScreenLastRowColumn", - "type": "class method", - "description": "Returns the position (on screen) for the last character in the provided screen row.", - "short_description": "Returns the position (on screen) for the last character in the provided screen row.", - "line": 3539, - "author": [], - "related": "EditSession.documentToScreenColumn", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "screenRow", - "description": "The screen row to check", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScreenLastRowColumn", - "name_prefix": "EditSession.", - "path": "EditSession.getScreenLastRowColumn", - "outFile": "edit_session.html#EditSession.getScreenLastRowColumn" - }, - { - "id": "EditSession.getScreenLength", - "type": "class method", - "description": "Returns the length of the screen.", - "short_description": "Returns the length of the screen.", - "line": 3818, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScreenLength", - "name_prefix": "EditSession.", - "path": "EditSession.getScreenLength", - "outFile": "edit_session.html#EditSession.getScreenLength" - }, - { - "id": "EditSession.getScreenTabSize", - "type": "class method", - "description": "The distance to the next tab stop at the specified screen column.", - "short_description": "The distance to the next tab stop at the specified screen column.", - "line": 3586, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "screenColumn", - "description": "The screen column to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScreenTabSize", - "name_prefix": "EditSession.", - "path": "EditSession.getScreenTabSize", - "outFile": "edit_session.html#EditSession.getScreenTabSize" - }, - { - "id": "EditSession.getScreenWidth", - "type": "class method", - "description": "Returns the width of the screen.", - "short_description": "Returns the width of the screen.", - "line": 2564, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScreenWidth", - "name_prefix": "EditSession.", - "path": "EditSession.getScreenWidth", - "outFile": "edit_session.html#EditSession.getScreenWidth" - }, - { - "id": "EditSession.getScrollLeft", - "type": "class method", - "description": "[Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft}", - "short_description": "[Returns the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.getScrollLeft}", - "line": 2556, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScrollLeft", - "name_prefix": "EditSession.", - "path": "EditSession.getScrollLeft", - "outFile": "edit_session.html#EditSession.getScrollLeft" - }, - { - "id": "EditSession.getScrollTop", - "type": "class method", - "description": "[Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop}", - "short_description": "[Returns the value of the distance between the top of the editor and the topmost part of the visible content.]{: #EditSession.getScrollTop}", - "line": 2535, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getScrollTop", - "name_prefix": "EditSession.", - "path": "EditSession.getScrollTop", - "outFile": "edit_session.html#EditSession.getScrollTop" - }, - { - "id": "EditSession.getSelection", - "type": "class method", - "description": "Returns the string of the current selection.", - "short_description": "Returns the string of the current selection.", - "line": 1801, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getSelection", - "name_prefix": "EditSession.", - "path": "EditSession.getSelection", - "outFile": "edit_session.html#EditSession.getSelection" - }, - { - "id": "EditSession.getState", - "type": "class method", - "description": "{:BackgroundTokenizer.getState}", - "short_description": "{:BackgroundTokenizer.getState}", - "line": 1808, - "author": [], - "related": "BackgroundTokenizer.getState", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to start at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getState", - "name_prefix": "EditSession.", - "path": "EditSession.getState", - "outFile": "edit_session.html#EditSession.getState" - }, - { - "id": "EditSession.getTabSize", - "type": "class method", - "description": "Returns the current tab size.", - "short_description": "Returns the current tab size.", - "line": 1978, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getTabSize", - "name_prefix": "EditSession.", - "path": "EditSession.getTabSize", - "outFile": "edit_session.html#EditSession.getTabSize" - }, - { - "id": "EditSession.getTabString", - "type": "class method", - "description": "Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by [[EditSession.getTabSize `getTabSize()`]]); otherwise it's simply `'\\t'`.", - "short_description": "Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by [[EditSession.getTabSize `getTabSize()`]]); otherwise it's simply `'\\t'`.", - "line": 1929, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getTabString", - "name_prefix": "EditSession.", - "path": "EditSession.getTabString", - "outFile": "edit_session.html#EditSession.getTabString" - }, - { - "id": "EditSession.getTextRange", - "type": "class method", - "description": "{:Document.getTextRange.desc}", - "short_description": "{:Document.getTextRange.desc}", - "line": 2639, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "The range to work with", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getTextRange", - "name_prefix": "EditSession.", - "path": "EditSession.getTextRange", - "outFile": "edit_session.html#EditSession.getTextRange" - }, - { - "id": "EditSession.getTokenAt", - "type": "class method", - "description": "Returns an object indicating the token at the current row. The object has two properties: `index` and `start`.", - "short_description": "Returns an object indicating the token at the current row. The object has two properties: `index` and `start`.", - "line": 1829, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number to retrieve from", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column number to retrieve from", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getTokenAt", - "name_prefix": "EditSession.", - "path": "EditSession.getTokenAt", - "outFile": "edit_session.html#EditSession.getTokenAt" - }, - { - "id": "EditSession.getTokens", - "type": "class method", - "description": "Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.", - "short_description": "Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.", - "line": 1818, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to start at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getTokens", - "name_prefix": "EditSession.", - "path": "EditSession.getTokens", - "outFile": "edit_session.html#EditSession.getTokens" - }, - { - "id": "EditSession.getUndoManager", - "type": "class method", - "description": "Returns the current undo manager.", - "short_description": "Returns the current undo manager.", - "line": 1922, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getUndoManager", - "name_prefix": "EditSession.", - "path": "EditSession.getUndoManager", - "outFile": "edit_session.html#EditSession.getUndoManager" - }, - { - "id": "EditSession.getUseSoftTabs", - "type": "class method", - "description": "Returns `true` if soft tabs are being used, `false` otherwise.", - "short_description": "Returns `true` if soft tabs are being used, `false` otherwise.", - "line": 1954, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getUseSoftTabs", - "name_prefix": "EditSession.", - "path": "EditSession.getUseSoftTabs", - "outFile": "edit_session.html#EditSession.getUseSoftTabs" - }, - { - "id": "EditSession.getUseWorker", - "type": "class method", - "description": "Returns `true` if workers are being used.", - "short_description": "Returns `true` if workers are being used.", - "line": 2346, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getUseWorker", - "name_prefix": "EditSession.", - "path": "EditSession.getUseWorker", - "outFile": "edit_session.html#EditSession.getUseWorker" - }, - { - "id": "EditSession.getUseWrapMode", - "type": "class method", - "description": "Returns `true` if wrap mode is being used; `false` otherwise.", - "short_description": "Returns `true` if wrap mode is being used; `false` otherwise.", - "line": 3056, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getUseWrapMode", - "name_prefix": "EditSession.", - "path": "EditSession.getUseWrapMode", - "outFile": "edit_session.html#EditSession.getUseWrapMode" - }, - { - "id": "EditSession.getValue", - "type": "class method", - "description": "Returns the current [[Document `Document`]] as a string.", - "short_description": "Returns the current [[Document `Document`]] as a string.", - "line": 1791, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getValue", - "name_prefix": "EditSession.", - "path": "EditSession.getValue", - "outFile": "edit_session.html#EditSession.getValue" - }, - { - "id": "EditSession.getWordRange", - "type": "class method", - "description": "Given a starting row and column, this method returns the `Range` of the first word boundary it finds.", - "short_description": "Given a starting row and column, this method returns the `Range` of the first word boundary it finds.", - "line": 2249, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to start at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column to start at", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getWordRange", - "name_prefix": "EditSession.", - "path": "EditSession.getWordRange", - "outFile": "edit_session.html#EditSession.getWordRange" - }, - { - "id": "EditSession.getWrapLimit", - "type": "class method", - "description": "Returns the value of wrap limit.", - "short_description": "Returns the value of wrap limit.", - "line": 3121, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getWrapLimit", - "name_prefix": "EditSession.", - "path": "EditSession.getWrapLimit", - "outFile": "edit_session.html#EditSession.getWrapLimit" - }, - { - "id": "EditSession.getWrapLimitRange", - "type": "class method", - "description": "Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:\n\n{ min: wrapLimitRange_min, max: wrapLimitRange_max }", - "short_description": "Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:\n", - "line": 3128, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "getWrapLimitRange", - "name_prefix": "EditSession.", - "path": "EditSession.getWrapLimitRange", - "outFile": "edit_session.html#EditSession.getWrapLimitRange" - }, - { - "id": "EditSession.indentRows", - "type": "class method", - "description": "Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`.\n\nIf `indentString` contains the `'\\t'` character, it's replaced by whatever is defined by [[EditSession.getTabString `getTabString()`]].", - "short_description": "Indents all the rows, from `startRow` to `endRow` (inclusive), by prefixing each row with the token in `indentString`.\n", - "line": 2864, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "startRow", - "description": "Starting row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "endRow", - "description": "Ending row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "indentString", - "description": "The indent token", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "indentRows", - "name_prefix": "EditSession.", - "path": "EditSession.indentRows", - "outFile": "edit_session.html#EditSession.indentRows" - }, - { - "id": "EditSession.insert", - "type": "class method", - "description": "Inserts a block of `text` and the indicated `position`.", - "short_description": "Inserts a block of `text` and the indicated `position`.", - "line": 2649, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to start inserting at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "text", - "description": "A chunk of text to insert", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "The position of the last line of `text`. If the length of `text` is 0, this function simply returns `position`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "insert", - "name_prefix": "EditSession.", - "path": "EditSession.insert", - "outFile": "edit_session.html#EditSession.insert" - }, - { - "id": "EditSession.isTabStop", - "type": "class method", - "description": "Returns `true` if the character at the position is a soft tab.", - "short_description": "Returns `true` if the character at the position is a soft tab.", - "line": 1985, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to check", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "isTabStop", - "name_prefix": "EditSession.", - "path": "EditSession.isTabStop", - "outFile": "edit_session.html#EditSession.isTabStop" - }, - { - "id": "EditSession.moveLinesDown", - "type": "class method", - "description": "Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`.", - "short_description": "Shifts all the lines in the document down one, starting from `firstRow` and ending at `lastRow`.", - "line": 2927, - "author": [], - "related": "Document.insertLines", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The starting row to move down", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row to move down", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "moveLinesDown", - "name_prefix": "EditSession.", - "path": "EditSession.moveLinesDown", - "outFile": "edit_session.html#EditSession.moveLinesDown" - }, - { - "id": "EditSession.moveLinesUp", - "type": "class method", - "description": "Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`.", - "short_description": "Shifts all the lines in the document up one, starting from `firstRow` and ending at `lastRow`.", - "line": 2910, - "author": [], - "related": "Document.insertLines", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The starting row to move up", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The final row to move up", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "If `firstRow` is less-than or equal to 0, this function returns 0. Otherwise, on success, it returns -1." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "moveLinesUp", - "name_prefix": "EditSession.", - "path": "EditSession.moveLinesUp", - "outFile": "edit_session.html#EditSession.moveLinesUp" - }, - { - "id": "EditSession.moveText", - "type": "class method", - "description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n ```json\n { row: newRowLocation, column: newColumnLocation }\n```", - "short_description": "Moves a range of text from the given range to the given position. `toPosition` is an object that looks like this:\n ```json\n { row: newRowLocation, column: newColumnLocation }\n```", - "line": 2822, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "fromRange", - "description": "The range of text you want moved within the document", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "toPosition", - "description": "The location (row and column) where you want to move the text to", - "types": [ - "Object" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "The new range where the text was moved to." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "moveText", - "name_prefix": "EditSession.", - "path": "EditSession.moveText", - "outFile": "edit_session.html#EditSession.moveText" - }, - { - "id": "new EditSession", - "type": "constructor", - "description": "Sets up a new `EditSession` and associates it with the given `Document` and `TextMode`.", - "short_description": "Sets up a new `EditSession` and associates it with the given `Document` and `TextMode`.", - "line": 1627, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "If `text` is a `Document`, it associates the `EditSession` with it. Otherwise, a new `Document` is created, with the initial text", - "types": [ - "Document", - "String" - ], - "optional": false - }, - { - "name": "mode", - "description": "The inital language mode to use for the document", - "types": [ - "TextMode" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "new", - "name_prefix": "EditSession.", - "path": "EditSession.new", - "outFile": "edit_session.html#EditSession.new" - }, - { - "id": "EditSession.onReloadTokenizer", - "type": "class method", - "description": "Reloads all the tokens on the current session. This function calls [[BackgroundTokenizer.start `BackgroundTokenizer.start ()`]] to all the rows; it also emits the `'tokenizerUpdate'` event.", - "short_description": "Reloads all the tokens on the current session. This function calls [[BackgroundTokenizer.start `BackgroundTokenizer.start ()`]] to all the rows; it also emits the `'tokenizerUpdate'` event.", - "line": 2353, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "onReloadTokenizer", - "name_prefix": "EditSession.", - "path": "EditSession.onReloadTokenizer", - "outFile": "edit_session.html#EditSession.onReloadTokenizer" - }, - { - "id": "EditSession.outdentRows", - "type": "class method", - "description": "Outdents all the rows defined by the `start` and `end` properties of `range`.", - "short_description": "Outdents all the rows defined by the `start` and `end` properties of `range`.", - "line": 2880, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A range of rows", - "types": [ - "Range" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "outdentRows", - "name_prefix": "EditSession.", - "path": "EditSession.outdentRows", - "outFile": "edit_session.html#EditSession.outdentRows" - }, - { - "id": "EditSession.redoChanges", - "type": "class method", - "description": "Re-implements a previously undone change to your document.", - "short_description": "Re-implements a previously undone change to your document.", - "line": 2707, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltas", - "description": "An array of previous changes", - "types": [ - "Array" - ], - "optional": false - }, - { - "name": "dontSelect", - "description": "{:dontSelect}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "redoChanges", - "name_prefix": "EditSession.", - "path": "EditSession.redoChanges", - "outFile": "edit_session.html#EditSession.redoChanges" - }, - { - "id": "EditSession.remove", - "type": "class method", - "description": "Removes the `range` from the document.", - "short_description": "Removes the `range` from the document.", - "line": 2661, - "author": [], - "related": "Document.remove", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A specified Range to remove", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "The new `start` property of the range, which contains `startRow` and `startColumn`. If `range` is empty, this function returns the unmodified value of `range.start`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "remove", - "name_prefix": "EditSession.", - "path": "EditSession.remove", - "outFile": "edit_session.html#EditSession.remove" - }, - { - "id": "EditSession.removeGutterDecoration", - "type": "class method", - "description": "Removes `className` from the `row`.", - "short_description": "Removes `className` from the `row`.", - "line": 2040, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row number", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "className", - "description": "The class to add", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "removeGutterDecoration", - "name_prefix": "EditSession.", - "path": "EditSession.removeGutterDecoration", - "outFile": "edit_session.html#EditSession.removeGutterDecoration" - }, - { - "id": "EditSession.removeMarker", - "type": "class method", - "description": "Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted.", - "short_description": "Removes the marker with the specified ID. If this marker was in front, the `'changeFrontMarker'` event is emitted. If the marker was in the back, the `'changeBackMarker'` event is emitted.", - "line": 2170, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "markerId", - "description": "A number representing a marker", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "removeMarker", - "name_prefix": "EditSession.", - "path": "EditSession.removeMarker", - "outFile": "edit_session.html#EditSession.removeMarker" - }, - { - "id": "EditSession.replace", - "type": "class method", - "description": "Replaces a range in the document with the new `text`.", - "short_description": "Replaces a range in the document with the new `text`.", - "line": 2800, - "author": [], - "related": "Document.replace", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A specified Range to replace", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "text", - "description": "The new text to use as a replacement", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "An object containing the final row and column, like this: \n```\n{row: endRow, column: 0}\n``` \nIf the text and range are empty, this function returns an object containing the current `range.start` value. \nIf the text is the exact same as what currently exists, this function returns an object containing the current `range.end` value." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "replace", - "name_prefix": "EditSession.", - "path": "EditSession.replace", - "outFile": "edit_session.html#EditSession.replace" - }, - { - "id": "EditSession.screenToDocumentPosition", - "type": "class method", - "description": "Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations}", - "short_description": "Converts characters coordinates on the screen to characters coordinates within the document. [This takes into account code folding, word wrap, tab size, and any other visual modifications.]{: #conversionConsiderations}", - "line": 3607, - "author": [], - "related": "EditSession.documentToScreenPosition", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "screenRow", - "description": "The screen row to check", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "screenColumn", - "description": "The screen column to check", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "The object returned has two properties: `row` and `column`." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "screenToDocumentPosition", - "name_prefix": "EditSession.", - "path": "EditSession.screenToDocumentPosition", - "outFile": "edit_session.html#EditSession.screenToDocumentPosition" - }, - { - "id": "EditSession.setAnnotations", - "type": "class method", - "description": "Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event.", - "short_description": "Sets annotations for the `EditSession`. This functions emits the `'changeAnnotation'` event.", - "line": 2208, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "annotations", - "description": "A list of annotations", - "types": [ - "Array" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setAnnotations", - "name_prefix": "EditSession.", - "path": "EditSession.setAnnotations", - "outFile": "edit_session.html#EditSession.setAnnotations" - }, - { - "id": "EditSession.setBreakpoint", - "type": "class method", - "description": "Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "short_description": "Sets a breakpoint on the row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "line": 2083, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row index", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "className", - "description": "Class of the breakpoint", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setBreakpoint", - "name_prefix": "EditSession.", - "path": "EditSession.setBreakpoint", - "outFile": "edit_session.html#EditSession.setBreakpoint" - }, - { - "id": "EditSession.setBreakpoints", - "type": "class method", - "description": "Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "short_description": "Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event.", - "line": 2060, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "rows", - "description": "An array of row indicies", - "types": [ - "[Number]" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setBreakpoints", - "name_prefix": "EditSession.", - "path": "EditSession.setBreakpoints", - "outFile": "edit_session.html#EditSession.setBreakpoints" - }, - { - "id": "EditSession.setDocument", - "type": "class method", - "description": "Sets the `EditSession` to point to a new `Document`. If a `BackgroundTokenizer` exists, it also points to `doc`.", - "short_description": "Sets the `EditSession` to point to a new `Document`. If a `BackgroundTokenizer` exists, it also points to `doc`.", - "line": 1672, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "doc", - "description": "The new `Document` to use", - "types": [ - "Document" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setDocument", - "name_prefix": "EditSession.", - "path": "EditSession.setDocument", - "outFile": "edit_session.html#EditSession.setDocument" - }, - { - "id": "EditSession.setNewLineMode", - "type": "class method", - "description": "{:Document.setNewLineMode.desc}", - "short_description": "{:Document.setNewLineMode.desc}", - "line": 2307, - "author": [], - "related": "Document.setNewLineMode", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "newLineMode", - "description": "{:Document.setNewLineMode.param}", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setNewLineMode", - "name_prefix": "EditSession.", - "path": "EditSession.setNewLineMode", - "outFile": "edit_session.html#EditSession.setNewLineMode" - }, - { - "id": "EditSession.setOverwrite", - "type": "class method", - "description": "Pass in `true` to enable overwrites in your session, or `false` to disable. \n\nIf overwrites is enabled, any text you enter will type over any text after it. If the value of `overwrite` changes, this function also emites the `changeOverwrite` event.", - "short_description": "Pass in `true` to enable overwrites in your session, or `false` to disable. \n", - "line": 1996, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "overwrite", - "description": "Defines wheter or not to set overwrites", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setOverwrite", - "name_prefix": "EditSession.", - "path": "EditSession.setOverwrite", - "outFile": "edit_session.html#EditSession.setOverwrite" - }, - { - "id": "EditSession.setScrollLeft", - "type": "class method", - "description": "[Sets the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.setScrollLeft}", - "short_description": "[Sets the value of the distance between the left of the editor and the leftmost part of the visible content.]{: #EditSession.setScrollLeft}", - "line": 2544, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollLeft", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setScrollLeft", - "name_prefix": "EditSession.", - "path": "EditSession.setScrollLeft", - "outFile": "edit_session.html#EditSession.setScrollLeft" - }, - { - "id": "EditSession.setScrollTop", - "type": "class method", - "description": "This function sets the scroll top value. It also emits the `'changeScrollTop'` event.", - "short_description": "This function sets the scroll top value. It also emits the `'changeScrollTop'` event.", - "line": 2521, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollTop", - "description": "The new scroll top value", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setScrollTop", - "name_prefix": "EditSession.", - "path": "EditSession.setScrollTop", - "outFile": "edit_session.html#EditSession.setScrollTop" - }, - { - "id": "EditSession.setTabSize", - "type": "class method", - "description": "Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event.", - "short_description": "Set the number of spaces that define a soft tab; for example, passing in `4` transforms the soft tabs to be equivalent to four spaces. This function also emits the `changeTabSize` event.", - "line": 1963, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "tabSize", - "description": "The new tab size", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setTabSize", - "name_prefix": "EditSession.", - "path": "EditSession.setTabSize", - "outFile": "edit_session.html#EditSession.setTabSize" - }, - { - "id": "EditSession.setUndoManager", - "type": "class method", - "description": "Sets the undo manager.", - "short_description": "Sets the undo manager.", - "line": 1865, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "undoManager", - "description": "The new undo manager", - "types": [ - "UndoManager" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setUndoManager", - "name_prefix": "EditSession.", - "path": "EditSession.setUndoManager", - "outFile": "edit_session.html#EditSession.setUndoManager" - }, - { - "id": "EditSession.setUndoSelect", - "type": "class method", - "description": "Enables or disables highlighting of the range where an undo occured.", - "short_description": "Enables or disables highlighting of the range where an undo occured.", - "line": 2737, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "enable", - "description": "If `true`, selects the range of the reinserted change", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setUndoSelect", - "name_prefix": "EditSession.", - "path": "EditSession.setUndoSelect", - "outFile": "edit_session.html#EditSession.setUndoSelect" - }, - { - "id": "EditSession.setUseSoftTabs", - "type": "class method", - "description": "Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\\t'`).", - "short_description": "Pass `true` to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character (`'\\t'`).", - "line": 1941, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "useSoftTabs", - "description": "Value indicating whether or not to use soft tabs", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setUseSoftTabs", - "name_prefix": "EditSession.", - "path": "EditSession.setUseSoftTabs", - "outFile": "edit_session.html#EditSession.setUseSoftTabs" - }, - { - "id": "EditSession.setUseWorker", - "type": "class method", - "description": "Identifies if you want to use a worker for the `EditSession`.", - "short_description": "Identifies if you want to use a worker for the `EditSession`.", - "line": 2330, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "useWorker", - "description": "Set to `true` to use a worker", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setUseWorker", - "name_prefix": "EditSession.", - "path": "EditSession.setUseWorker", - "outFile": "edit_session.html#EditSession.setUseWorker" - }, - { - "id": "EditSession.setUseWrapMode", - "type": "class method", - "description": "Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted.", - "short_description": "Sets whether or not line wrapping is enabled. If `useWrapMode` is different than the current value, the `'changeWrapMode'` event is emitted.", - "line": 3030, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "useWrapMode", - "description": "Enable (or disable) wrap mode", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setUseWrapMode", - "name_prefix": "EditSession.", - "path": "EditSession.setUseWrapMode", - "outFile": "edit_session.html#EditSession.setUseWrapMode" - }, - { - "id": "EditSession.setValue", - "type": "class method", - "description": "Sets the session text.", - "short_description": "Sets the session text.", - "line": 1765, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "The new text to place", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setValue", - "name_prefix": "EditSession.", - "path": "EditSession.setValue", - "outFile": "edit_session.html#EditSession.setValue" - }, - { - "id": "EditSession.setWrapLimitRange", - "type": "class method", - "description": "Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event.", - "short_description": "Sets the boundaries of wrap. Either value can be `null` to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for `min` or `max` are different, this method also emits the `'changeWrapMode'` event.", - "line": 3068, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "min", - "description": "The minimum wrap value (the left side wrap)", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "max", - "description": "The maximum wrap value (the right side wrap)", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "setWrapLimitRange", - "name_prefix": "EditSession.", - "path": "EditSession.setWrapLimitRange", - "outFile": "edit_session.html#EditSession.setWrapLimitRange" - }, - { - "id": "EditSession.toggleOverwrite", - "type": "class method", - "description": "Sets the value of overwrite to the opposite of whatever it currently is.", - "short_description": "Sets the value of overwrite to the opposite of whatever it currently is.", - "line": 2019, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "toggleOverwrite", - "name_prefix": "EditSession.", - "path": "EditSession.toggleOverwrite", - "outFile": "edit_session.html#EditSession.toggleOverwrite" - }, - { - "id": "EditSession.toString", - "type": "class method", - "description": "Returns the current [[Document `Document`]] as a string.", - "short_description": "Returns the current [[Document `Document`]] as a string.", - "line": 1784, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "toString", - "name_prefix": "EditSession.", - "path": "EditSession.toString", - "outFile": "edit_session.html#EditSession.toString" - }, - { - "id": "EditSession.undoChanges", - "type": "class method", - "description": "Reverts previous changes to your document.", - "short_description": "Reverts previous changes to your document.", - "line": 2673, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltas", - "description": "An array of previous changes", - "types": [ - "Array" - ], - "optional": false - }, - { - "name": "dontSelect", - "description": "[If `true`, doesn't select the range of where the change occured]{: #dontSelect}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "undoChanges", - "name_prefix": "EditSession.", - "path": "EditSession.undoChanges", - "outFile": "edit_session.html#EditSession.undoChanges" - }, - { - "id": "EditSession@change", - "type": "event", - "description": "Emitted when the document changes.", - "short_description": "Emitted when the document changes.", - "line": 1540, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "An object containing a `delta` of information about the change.", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "change", - "name_prefix": "EditSession@", - "path": "EditSession.event.change", - "outFile": "edit_session.html#EditSession.event.change" - }, - { - "id": "EditSession@changeAnnotation", - "type": "event", - "description": "Emitted when an annotation changes, like through [[EditSession.setAnnotations]].", - "short_description": "Emitted when an annotation changes, like through [[EditSession.setAnnotations]].", - "line": 1571, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeAnnotation", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeAnnotation", - "outFile": "edit_session.html#EditSession.event.changeAnnotation" - }, - { - "id": "EditSession@changeBackMarker", - "type": "event", - "description": "Emitted when a back marker changes.", - "short_description": "Emitted when a back marker changes.", - "line": 1566, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeBackMarker", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeBackMarker", - "outFile": "edit_session.html#EditSession.event.changeBackMarker" - }, - { - "id": "EditSession@changeBreakpoint", - "type": "event", - "description": "Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.", - "short_description": "Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.", - "line": 1556, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeBreakpoint", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeBreakpoint", - "outFile": "edit_session.html#EditSession.event.changeBreakpoint" - }, - { - "id": "EditSession@changeFold", - "type": "event", - "description": "Emitted when a code fold is added or removed.", - "short_description": "Emitted when a code fold is added or removed.", - "line": 1607, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeFold", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeFold", - "outFile": "edit_session.html#EditSession.event.changeFold" - }, - { - "id": "EditSession@changeFrontMarker", - "type": "event", - "description": "Emitted when a front marker changes.", - "short_description": "Emitted when a front marker changes.", - "line": 1561, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeFrontMarker", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeFrontMarker", - "outFile": "edit_session.html#EditSession.event.changeFrontMarker" - }, - { - "id": "EditSession@changeMode", - "type": "event", - "description": "Emitted when the current mode changes.", - "short_description": "Emitted when the current mode changes.", - "line": 1589, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeMode", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeMode", - "outFile": "edit_session.html#EditSession.event.changeMode" - }, - { - "id": "EditSession@changeOverwrite", - "type": "event", - "description": "Emitted when the ability to overwrite text changes, via [[EditSession.setOverwrite]].", - "short_description": "Emitted when the ability to overwrite text changes, via [[EditSession.setOverwrite]].", - "line": 1551, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeOverwrite", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeOverwrite", - "outFile": "edit_session.html#EditSession.event.changeOverwrite" - }, - { - "id": "EditSession@changeScrollLeft", - "type": "event", - "description": "Emitted when the scroll left changes.", - "short_description": "Emitted when the scroll left changes.", - "line": 1619, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollLeft", - "description": "The new scroll left value", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeScrollLeft", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeScrollLeft", - "outFile": "edit_session.html#EditSession.event.changeScrollLeft" - }, - { - "id": "EditSession@changeScrollTop", - "type": "event", - "description": "Emitted when the scroll top changes.", - "short_description": "Emitted when the scroll top changes.", - "line": 1613, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollTop", - "description": "The new scroll top value", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeScrollTop", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeScrollTop", - "outFile": "edit_session.html#EditSession.event.changeScrollTop" - }, - { - "id": "EditSession@changeTabSize", - "type": "event", - "description": "Emitted when the tab size changes, via [[EditSession.setTabSize]].", - "short_description": "Emitted when the tab size changes, via [[EditSession.setTabSize]].", - "line": 1546, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeTabSize", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeTabSize", - "outFile": "edit_session.html#EditSession.event.changeTabSize" - }, - { - "id": "EditSession@changeWrapLimit", - "type": "event", - "description": "Emitted when the wrapping limit changes.", - "short_description": "Emitted when the wrapping limit changes.", - "line": 1601, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeWrapLimit", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeWrapLimit", - "outFile": "edit_session.html#EditSession.event.changeWrapLimit" - }, - { - "id": "EditSession@changeWrapMode", - "type": "event", - "description": "Emitted when the wrap mode changes.", - "short_description": "Emitted when the wrap mode changes.", - "line": 1595, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "changeWrapMode", - "name_prefix": "EditSession@", - "path": "EditSession.event.changeWrapMode", - "outFile": "edit_session.html#EditSession.event.changeWrapMode" - }, - { - "id": "EditSession@loadMode", - "type": "event", - "description": "Emitted when the mode is loaded.", - "short_description": "Emitted when the mode is loaded.", - "line": 1583, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "loadMode", - "name_prefix": "EditSession@", - "path": "EditSession.event.loadMode", - "outFile": "edit_session.html#EditSession.event.loadMode" - }, - { - "id": "EditSession@tokenizerUpdate", - "type": "event", - "description": "Emitted when a background tokenizer asynchronously processes new rows.", - "short_description": "Emitted when a background tokenizer asynchronously processes new rows.", - "line": 1576, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "An object containing one property, `\"data\"`, that contains information about the changing rows", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "name": "tokenizerUpdate", - "name_prefix": "EditSession@", - "path": "EditSession.event.tokenizerUpdate", - "outFile": "edit_session.html#EditSession.event.tokenizerUpdate" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/edit_session.js", - "subclasses": [], - "name": "EditSession", - "path": "EditSession", - "outFile": "edit_session.html" - }, - { - "id": "PlaceHolder", - "type": "class", - "incomplete": true, - "line": 14534, - "author": [], - "aliases": [], - "children": [ - { - "id": "PlaceHolder.cancel", - "type": "class method", - "description": "PlaceHolder.cancel()\n\nTODO", - "short_description": "PlaceHolder.cancel()\n", - "line": 14747, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "cancel", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.cancel", - "outFile": "placeholder.html#PlaceHolder.cancel" - }, - { - "id": "PlaceHolder.detach", - "type": "class method", - "description": "PlaceHolder.detach()\n\nTODO", - "short_description": "PlaceHolder.detach()\n", - "line": 14729, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "detach", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.detach", - "outFile": "placeholder.html#PlaceHolder.detach" - }, - { - "id": "PlaceHolder.hideOtherMarkers", - "type": "class method", - "description": "PlaceHolder.hideOtherMarkers()\n\nHides all over markers in the [[EditSession `EditSession`]] that are not the currently selected one.", - "short_description": "PlaceHolder.hideOtherMarkers()\n", - "line": 14628, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "hideOtherMarkers", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.hideOtherMarkers", - "outFile": "placeholder.html#PlaceHolder.hideOtherMarkers" - }, - { - "id": "new PlaceHolder", - "type": "constructor", - "description": "- session (Document): The document to associate with the anchor\n- length (Number): The starting row position\n- pos (Number): The starting column position\n- others (String):\n- mainClass (String):\n- othersClass (String):", - "short_description": "- session (Document): The document to associate with the anchor\n- length (Number): The starting row position\n- pos (Number): The starting column position\n- others (String):\n- mainClass (String):\n- othersClass (String):", - "line": 14540, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "new", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.new", - "outFile": "placeholder.html#PlaceHolder.new" - }, - { - "id": "PlaceHolder.onCursorChange", - "type": "class method", - "description": "PlaceHolder@onCursorChange(e)\n\nEmitted when the cursor changes.", - "short_description": "PlaceHolder@onCursorChange(e)\n", - "line": 14710, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "event", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "onCursorChange", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.onCursorChange", - "outFile": "placeholder.html#PlaceHolder.onCursorChange" - }, - { - "id": "PlaceHolder.onUpdate", - "type": "class method", - "description": "PlaceHolder@onUpdate(e)\n\nEmitted when the place holder updates.", - "short_description": "PlaceHolder@onUpdate(e)\n", - "line": 14642, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "event", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "onUpdate", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.onUpdate", - "outFile": "placeholder.html#PlaceHolder.onUpdate" - }, - { - "id": "PlaceHolder.setup", - "type": "class method", - "description": "PlaceHolder.setup()\n\nTODO", - "short_description": "PlaceHolder.setup()\n", - "line": 14582, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "setup", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.setup", - "outFile": "placeholder.html#PlaceHolder.setup" - }, - { - "id": "PlaceHolder.showOtherMarkers", - "type": "class method", - "description": "PlaceHolder.showOtherMarkers()\n\nTODO", - "short_description": "PlaceHolder.showOtherMarkers()\n", - "line": 14608, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "name": "showOtherMarkers", - "name_prefix": "PlaceHolder.", - "path": "PlaceHolder.showOtherMarkers", - "outFile": "placeholder.html#PlaceHolder.showOtherMarkers" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/placeholder.js", - "subclasses": [], - "name": "PlaceHolder", - "path": "PlaceHolder", - "outFile": "placeholder.html" - }, - { - "id": "Range", - "type": "class", - "description": "This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.", - "short_description": "This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.", - "line": 14780, - "author": [], - "aliases": [], - "children": [ - { - "id": "Range.clipRows", - "type": "class method", - "description": "Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object.", - "short_description": "Returns the part of the current `Range` that occurs within the boundaries of `firstRow` and `lastRow` as a new `Range` object.", - "line": 15188, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The starting row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The ending row", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "clipRows", - "name_prefix": "Range.", - "path": "Range.clipRows", - "outFile": "range.html#Range.clipRows" - }, - { - "id": "Range.clone", - "type": "class method", - "description": "Returns a duplicate of the calling range.", - "short_description": "Returns a duplicate of the calling range.", - "line": 15261, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "clone", - "name_prefix": "Range.", - "path": "Range.clone", - "outFile": "range.html#Range.clone" - }, - { - "id": "Range.collapseRows", - "type": "class method", - "description": "Returns a range containing the starting and ending rows of the original range, but with a column value of `0`.", - "short_description": "Returns a range containing the starting and ending rows of the original range, but with a column value of `0`.", - "line": 15270, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "collapseRows", - "name_prefix": "Range.", - "path": "Range.collapseRows", - "outFile": "range.html#Range.collapseRows" - }, - { - "id": "Range.compare", - "type": "class method", - "description": "Checks the row and column points with the row and column points of the calling range.", - "short_description": "Checks the row and column points with the row and column points of the calling range.", - "line": 15067, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "compare", - "name_prefix": "Range.", - "path": "Range.compare", - "outFile": "range.html#Range.compare" - }, - { - "id": "Range.compareEnd", - "type": "class method", - "description": "Checks the row and column points with the row and column points of the calling range.", - "short_description": "Checks the row and column points with the row and column points of the calling range.", - "line": 15138, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range, or if `isEnd` is `true.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "compareEnd", - "name_prefix": "Range.", - "path": "Range.compareEnd", - "outFile": "range.html#Range.compareEnd" - }, - { - "id": "Range.compareInside", - "type": "class method", - "description": "Checks the row and column points with the row and column points of the calling range.", - "short_description": "Checks the row and column points with the row and column points of the calling range.", - "line": 15165, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `1` if the ending row of the calling range is equal to `row`, and the ending column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1` if the starting row of the calling range is equal to `row`, and the starting column of the calling range is equal to `column`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns the value after calling [[Range.compare `compare()`]]." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "compareInside", - "name_prefix": "Range.", - "path": "Range.compareInside", - "outFile": "range.html#Range.compareInside" - }, - { - "id": "Range.comparePoint", - "type": "class method", - "description": "Checks the row and column points of `p` with the row and column points of the calling range.", - "short_description": "Checks the row and column points of `p` with the row and column points of the calling range.", - "line": 14898, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "p", - "description": "A point to compare with", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `1` if `p.row` is greater than the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* Otherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* Otherwise, it returns 1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              " - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "comparePoint", - "name_prefix": "Range.", - "path": "Range.comparePoint", - "outFile": "range.html#Range.comparePoint" - }, - { - "id": "Range.compareRange", - "type": "class method", - "description": "Compares `this` range (A) with another range (B).", - "short_description": "Compares `this` range (A) with another range (B).", - "line": 14854, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A range to compare with", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-2`: (B) is in front of (A), and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `-1`: (B) begins before (A) but ends inside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `0`: (B) is completely inside of (A) OR (A) is completely inside of (B)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `+1`: (B) begins inside of (A) but ends outside of (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `+2`: (B) is after (A) and doesn't intersect with (A)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n* `42`: FTW state: (B) ends in (A) but starts outside of (A)" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "compareRange", - "name_prefix": "Range.", - "path": "Range.compareRange", - "outFile": "range.html#Range.compareRange" - }, - { - "id": "Range.compareStart", - "type": "class method", - "description": "Checks the row and column points with the row and column points of the calling range.", - "short_description": "Checks the row and column points with the row and column points of the calling range.", - "line": 15108, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "This method returns one of the following numbers:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`0` if the two points are exactly equal
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`-1` if `p.row` is less then the calling range
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`1` if `p.row` is greater than the calling range, or if `isStart` is `true`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the starting row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is greater than or equal to the calling range's starting column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns -1
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf the ending row of the calling range is equal to `p.row`, and:
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n`p.column` is less than or equal to the calling range's ending column, this returns `0`
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nOtherwise, it returns 1" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "compareStart", - "name_prefix": "Range.", - "path": "Range.compareStart", - "outFile": "range.html#Range.compareStart" - }, - { - "id": "Range.contains", - "type": "class method", - "description": "Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if:\n```javascript\n this.start.row <= row <= this.end.row &&\n this.start.column <= column <= this.end.column\n```", - "short_description": "Returns `true` if the `row` and `column` provided are within the given range. This can better be expressed as returning `true` if:\n```javascript\n this.start.row <= row <= this.end.row &&\n this.start.column <= column <= this.end.column\n```", - "line": 14837, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row to check for", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column to check for", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "contains", - "name_prefix": "Range.", - "path": "Range.contains", - "outFile": "range.html#Range.contains" - }, - { - "id": "Range.containsRange", - "type": "class method", - "description": "Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range.", - "short_description": "Checks the start and end points of `range` and compares them to the calling range. Returns `true` if the `range` is contained within the caller's range.", - "line": 14922, - "author": [], - "related": "Range.comparePoint", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A range to compare with", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "containsRange", - "name_prefix": "Range.", - "path": "Range.containsRange", - "outFile": "range.html#Range.containsRange" - }, - { - "id": "Range.extend", - "type": "class method", - "description": "Changes the row and column points for the calling range for both the starting and ending points.", - "short_description": "Changes the row and column points for the calling range for both the starting and ending points.", - "line": 15227, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A new row to extend to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A new column to extend to", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "The original range with the new row" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "extend", - "name_prefix": "Range.", - "path": "Range.extend", - "outFile": "range.html#Range.extend" - }, - { - "id": "Range.fromPoints", - "type": "class method", - "description": "Creates and returns a new `Range` based on the row and column of the given parameters.", - "short_description": "Creates and returns a new `Range` based on the row and column of the given parameters.", - "line": 15303, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "start", - "description": "A starting point to use", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "end", - "description": "An ending point to use", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "fromPoints", - "name_prefix": "Range.", - "path": "Range.fromPoints", - "outFile": "range.html#Range.fromPoints" - }, - { - "id": "Range.inside", - "type": "class method", - "description": "Returns `true` if the `row` and `column` are within the given range.", - "short_description": "Returns `true` if the `row` and `column` are within the given range.", - "line": 15006, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "inside", - "name_prefix": "Range.", - "path": "Range.inside", - "outFile": "range.html#Range.inside" - }, - { - "id": "Range.insideEnd", - "type": "class method", - "description": "Returns `true` if the `row` and `column` are within the given range's ending points.", - "short_description": "Returns `true` if the `row` and `column` are within the given range's ending points.", - "line": 15046, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "insideEnd", - "name_prefix": "Range.", - "path": "Range.insideEnd", - "outFile": "range.html#Range.insideEnd" - }, - { - "id": "Range.insideStart", - "type": "class method", - "description": "Returns `true` if the `row` and `column` are within the given range's starting points.", - "short_description": "Returns `true` if the `row` and `column` are within the given range's starting points.", - "line": 15026, - "author": [], - "related": "Range.compare", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "insideStart", - "name_prefix": "Range.", - "path": "Range.insideStart", - "outFile": "range.html#Range.insideStart" - }, - { - "id": "Range.intersects", - "type": "class method", - "description": "Returns `true` if passed in `range` intersects with the one calling this method.", - "short_description": "Returns `true` if passed in `range` intersects with the one calling this method.", - "line": 14934, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A range to compare with", - "types": [ - "Range" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "intersects", - "name_prefix": "Range.", - "path": "Range.intersects", - "outFile": "range.html#Range.intersects" - }, - { - "id": "Range.isEnd", - "type": "class method", - "description": "Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`.", - "short_description": "Returns `true` if the caller's ending row point is the same as `row`, and if the caller's ending column is the same as `column`.", - "line": 14946, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "isEnd", - "name_prefix": "Range.", - "path": "Range.isEnd", - "outFile": "range.html#Range.isEnd" - }, - { - "id": "Range.isEqual", - "type": "class method", - "description": "Returns `true` if and only if the starting row and column, and ending tow and column, are equivalent to those given by `range`.", - "short_description": "Returns `true` if and only if the starting row and column, and ending tow and column, are equivalent to those given by `range`.", - "line": 14810, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "A range to check against", - "types": [ - "Range" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "isEqual", - "name_prefix": "Range.", - "path": "Range.isEqual", - "outFile": "range.html#Range.isEqual" - }, - { - "id": "Range.isMultiLine", - "type": "class method", - "description": "Returns `true` if the range spans across multiple lines.", - "short_description": "Returns `true` if the range spans across multiple lines.", - "line": 15252, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "isMultiLine", - "name_prefix": "Range.", - "path": "Range.isMultiLine", - "outFile": "range.html#Range.isMultiLine" - }, - { - "id": "Range.isStart", - "type": "class method", - "description": "Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`.", - "short_description": "Returns `true` if the caller's starting row point is the same as `row`, and if the caller's starting column is the same as `column`.", - "line": 14958, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to compare with", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to compare with", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "isStart", - "name_prefix": "Range.", - "path": "Range.isStart", - "outFile": "range.html#Range.isStart" - }, - { - "id": "new Range", - "type": "constructor", - "description": "Creates a new `Range` object with the given starting and ending row and column points.", - "short_description": "Creates a new `Range` object with the given starting and ending row and column points.", - "line": 14787, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "startRow", - "description": "The starting row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "startColumn", - "description": "The starting column", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "endRow", - "description": "The ending row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "endColumn", - "description": "The ending column", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "new", - "name_prefix": "Range.", - "path": "Range.new", - "outFile": "range.html#Range.new" - }, - { - "id": "Range.setEnd", - "type": "class method", - "description": "Sets the starting row and column for the range.", - "short_description": "Sets the starting row and column for the range.", - "line": 14988, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to set", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to set", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "setEnd", - "name_prefix": "Range.", - "path": "Range.setEnd", - "outFile": "range.html#Range.setEnd" - }, - { - "id": "Range.setStart", - "type": "class method", - "description": "Sets the starting row and column for the range.", - "short_description": "Sets the starting row and column for the range.", - "line": 14970, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row point to set", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "A column point to set", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "setStart", - "name_prefix": "Range.", - "path": "Range.setStart", - "outFile": "range.html#Range.setStart" - }, - { - "id": "Range.toScreenRange", - "type": "class method", - "description": "Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object.", - "short_description": "Given the current `Range`, this function converts those starting and ending points into screen positions, and then returns a new `Range` object.", - "line": 15282, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The `EditSession` to retrieve coordinates from", - "types": [ - "EditSession" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "toScreenRange", - "name_prefix": "Range.", - "path": "Range.toScreenRange", - "outFile": "range.html#Range.toScreenRange" - }, - { - "id": "Range.toString", - "type": "class method", - "description": "Returns a string containing the range's row and column information, given like this:\n```\n [start.row/start.column] -> [end.row/end.column]\n```", - "short_description": "Returns a string containing the range's row and column information, given like this:\n```\n [start.row/start.column] -> [end.row/end.column]\n```", - "line": 14824, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "name": "toString", - "name_prefix": "Range.", - "path": "Range.toString", - "outFile": "range.html#Range.toString" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/range.js", - "subclasses": [], - "name": "Range", - "path": "Range", - "outFile": "range.html" - }, - { - "id": "RenderLoop", - "type": "class", - "description": "Batches changes (that force something to be redrawn) in the background.", - "short_description": "Batches changes (that force something to be redrawn) in the background.", - "line": 15431, - "author": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/renderloop.js", - "subclasses": [], - "name": "RenderLoop", - "path": "RenderLoop", - "outFile": "renderloop.html" - }, - { - "id": "ScrollBar", - "type": "class", - "description": "A set of methods for setting and retrieving the editor's scrollbar.", - "short_description": "A set of methods for setting and retrieving the editor's scrollbar.", - "line": 15530, - "author": [], - "aliases": [], - "children": [ - { - "id": "ScrollBar.getWidth", - "type": "class method", - "description": "Returns the width of the scroll bar.", - "short_description": "Returns the width of the scroll bar.", - "line": 15582, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "getWidth", - "name_prefix": "ScrollBar.", - "path": "ScrollBar.getWidth", - "outFile": "scrollbar.html#ScrollBar.getWidth" - }, - { - "id": "new ScrollBar", - "type": "constructor", - "description": "Creates a new `ScrollBar`. `parent` is the owner of the scroll bar.", - "short_description": "Creates a new `ScrollBar`. `parent` is the owner of the scroll bar.", - "line": 15537, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "parent", - "description": "A DOM element", - "types": [ - "DOMElement" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "new", - "name_prefix": "ScrollBar.", - "path": "ScrollBar.new", - "outFile": "scrollbar.html#ScrollBar.new" - }, - { - "id": "ScrollBar.setHeight", - "type": "class method", - "description": "Sets the height of the scroll bar, in pixels.", - "short_description": "Sets the height of the scroll bar, in pixels.", - "line": 15591, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "height", - "description": "The new height", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "setHeight", - "name_prefix": "ScrollBar.", - "path": "ScrollBar.setHeight", - "outFile": "scrollbar.html#ScrollBar.setHeight" - }, - { - "id": "ScrollBar.setInnerHeight", - "type": "class method", - "description": "Sets the inner height of the scroll bar, in pixels.", - "short_description": "Sets the inner height of the scroll bar, in pixels.", - "line": 15602, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "height", - "description": "The new inner height", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "setInnerHeight", - "name_prefix": "ScrollBar.", - "path": "ScrollBar.setInnerHeight", - "outFile": "scrollbar.html#ScrollBar.setInnerHeight" - }, - { - "id": "ScrollBar.setScrollTop", - "type": "class method", - "description": "Sets the scroll top of the scroll bar.", - "short_description": "Sets the scroll top of the scroll bar.", - "line": 15616, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollTop", - "description": "The new scroll top", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "setScrollTop", - "name_prefix": "ScrollBar.", - "path": "ScrollBar.setScrollTop", - "outFile": "scrollbar.html#ScrollBar.setScrollTop" - }, - { - "id": "ScrollBar@scroll", - "type": "event", - "description": "Emitted when the scroll bar, well, scrolls.", - "short_description": "Emitted when the scroll bar, well, scrolls.", - "line": 15570, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "e", - "description": "Contains one property, `\"data\"`, which indicates the current scroll top position", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "name": "scroll", - "name_prefix": "ScrollBar@", - "path": "ScrollBar.event.scroll", - "outFile": "scrollbar.html#ScrollBar.event.scroll" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/scrollbar.js", - "subclasses": [], - "name": "ScrollBar", - "path": "ScrollBar", - "outFile": "scrollbar.html" - }, - { - "id": "Search", - "type": "class", - "description": "A class designed to handle all sorts of text searches within a [[Document `Document`]].", - "short_description": "A class designed to handle all sorts of text searches within a [[Document `Document`]].", - "line": 15653, - "author": [], - "aliases": [], - "children": [ - { - "id": "Search.find", - "type": "class method", - "description": "Searches for `options.needle`. If found, this method returns the [[Range `Range`]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", - "short_description": "Searches for `options.needle`. If found, this method returns the [[Range `Range`]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", - "line": 15712, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The session to search with", - "types": [ - "EditSession" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "find", - "name_prefix": "Search.", - "path": "Search.find", - "outFile": "search.html#Search.find" - }, - { - "id": "Search.findAll", - "type": "class method", - "description": "Searches for all occurances `options.needle`. If found, this method returns an array of [[Range `Range`s]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", - "short_description": "Searches for all occurances `options.needle`. If found, this method returns an array of [[Range `Range`s]] where the text first occurs. If `options.backwards` is `true`, the search goes backwards in the session.", - "line": 15738, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The session to search with", - "types": [ - "EditSession" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "findAll", - "name_prefix": "Search.", - "path": "Search.findAll", - "outFile": "search.html#Search.findAll" - }, - { - "id": "Search.getOptions", - "type": "class method", - "description": "[Returns an object containing all the search options.]{: #Search.getOptions}", - "short_description": "[Returns an object containing all the search options.]{: #Search.getOptions}", - "line": 15696, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "getOptions", - "name_prefix": "Search.", - "path": "Search.getOptions", - "outFile": "search.html#Search.getOptions" - }, - { - "id": "new Search", - "type": "constructor", - "description": "Creates a new `Search` object. The following search options are avaliable:\n\n- `needle`: The string or regular expression you're looking for\n- `backwards`: Whether to search backwards from where cursor currently is. Defaults to `false`.\n- `wrap`: Whether to wrap the search back to the beginning when it hits the end. Defaults to `false`.\n- `caseSensitive`: Whether the search ought to be case-sensitive. Defaults to `false`.\n- `wholeWord`: Whether the search matches only on whole words. Defaults to `false`.\n- `range`: The [[Range]] to search within. Set this to `null` for the whole document\n- `regExp`: Whether the search is a regular expression or not. Defaults to `false`.\n- `start`: The starting [[Range]] or cursor position to begin the search\n- `skipCurrent`: Whether or not to include the current line in the search. Default to `false`.", - "short_description": "Creates a new `Search` object. The following search options are avaliable:\n", - "line": 15660, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "new", - "name_prefix": "Search.", - "path": "Search.new", - "outFile": "search.html#Search.new" - }, - { - "id": "Search.replace", - "type": "class method", - "description": "Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`.", - "short_description": "Searches for `options.needle` in `input`, and, if found, replaces it with `replacement`.", - "line": 15801, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "input", - "description": "The text to search in", - "types": [ - "String" - ], - "optional": false - }, - { - "name": "replacement", - "description": "The replacing text\n+ (String): If `options.regExp` is `true`, this function returns `input` with the replacement already made. Otherwise, this function just returns `replacement`.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \nIf `options.needle` was not found, this function returns `null`.", - "types": [ - "String" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "replace", - "name_prefix": "Search.", - "path": "Search.replace", - "outFile": "search.html#Search.replace" - }, - { - "id": "Search.set", - "type": "class method", - "description": "Sets the search options via the `options` parameter.", - "short_description": "Sets the search options via the `options` parameter.", - "line": 15683, - "chainable": true, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "options", - "description": "An object containing all the new search properties", - "types": [ - "Object" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Search", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "set", - "name_prefix": "Search.", - "path": "Search.set", - "outFile": "search.html#Search.set" - }, - { - "id": "Search.setOptions", - "type": "class method", - "description": "Sets the search options via the `options` parameter.", - "short_description": "Sets the search options via the `options` parameter.", - "line": 15704, - "author": [], - "related": "Search.set", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "An", - "description": "object containing all the search propertie", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "name": "setOptions", - "name_prefix": "Search.", - "path": "Search.setOptions", - "outFile": "search.html#Search.setOptions" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/search.js", - "subclasses": [], - "name": "Search", - "path": "Search", - "outFile": "search.html" - }, - { - "id": "Selection", - "type": "class", - "description": "Contains the cursor position and the text selection of an edit session.\n\nThe row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding.", - "short_description": "Contains the cursor position and the text selection of an edit session.\n", - "line": 15839, - "author": [], - "aliases": [], - "children": [ - { - "id": "Selection.clearSelection", - "type": "class method", - "description": "[Empties the selection (by de-selecting it). This function also emits the `'changeSelection'` event.]{: #Selection.clearSelection}", - "short_description": "[Empties the selection (by de-selecting it). This function also emits the `'changeSelection'` event.]{: #Selection.clearSelection}", - "line": 16023, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "clearSelection", - "name_prefix": "Selection.", - "path": "Selection.clearSelection", - "outFile": "selection.html#Selection.clearSelection" - }, - { - "id": "Selection.getCursor", - "type": "class method", - "description": "Gets the current position of the cursor.", - "short_description": "Gets the current position of the cursor.", - "line": 15922, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "getCursor", - "name_prefix": "Selection.", - "path": "Selection.getCursor", - "outFile": "selection.html#Selection.getCursor" - }, - { - "id": "Selection.getRange", - "type": "class method", - "description": "[Returns the [[Range]] for the selected text.]{: #Selection.getRange}", - "short_description": "[Returns the [[Range]] for the selected text.]{: #Selection.getRange}", - "line": 16004, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Range", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "getRange", - "name_prefix": "Selection.", - "path": "Selection.getRange", - "outFile": "selection.html#Selection.getRange" - }, - { - "id": "Selection.getSelectionAnchor", - "type": "class method", - "description": "Returns an object containing the `row` and `column` of the calling selection anchor.", - "short_description": "Returns an object containing the `row` and `column` of the calling selection anchor.", - "line": 15946, - "author": [], - "related": "Anchor.getPosition", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "getSelectionAnchor", - "name_prefix": "Selection.", - "path": "Selection.getSelectionAnchor", - "outFile": "selection.html#Selection.getSelectionAnchor" - }, - { - "id": "Selection.getSelectionLead", - "type": "class method", - "description": "Returns an object containing the `row` and `column` of the calling selection lead.", - "short_description": "Returns an object containing the `row` and `column` of the calling selection lead.", - "line": 15957, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "getSelectionLead", - "name_prefix": "Selection.", - "path": "Selection.getSelectionLead", - "outFile": "selection.html#Selection.getSelectionLead" - }, - { - "id": "Selection.getWordRange", - "type": "class method", - "description": "Moves the selection to highlight the entire word.", - "short_description": "Moves the selection to highlight the entire word.", - "line": 16178, - "author": [], - "related": "EditSession.getWordRange", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "column", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "getWordRange", - "name_prefix": "Selection.", - "path": "Selection.getWordRange", - "outFile": "selection.html#Selection.getWordRange" - }, - { - "id": "Selection.isBackwards", - "type": "class method", - "description": "Returns `true` if the selection is going backwards in the document.", - "short_description": "Returns `true` if the selection is going backwards in the document.", - "line": 15994, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "isBackwards", - "name_prefix": "Selection.", - "path": "Selection.isBackwards", - "outFile": "selection.html#Selection.isBackwards" - }, - { - "id": "Selection.isEmpty", - "type": "class method", - "description": "Returns `true` if the selection is empty.", - "short_description": "Returns `true` if the selection is empty.", - "line": 15898, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "isEmpty", - "name_prefix": "Selection.", - "path": "Selection.isEmpty", - "outFile": "selection.html#Selection.isEmpty" - }, - { - "id": "Selection.isMultiLine", - "type": "class method", - "description": "Returns `true` if the selection is a multi-line.", - "short_description": "Returns `true` if the selection is a multi-line.", - "line": 15910, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "isMultiLine", - "name_prefix": "Selection.", - "path": "Selection.isMultiLine", - "outFile": "selection.html#Selection.isMultiLine" - }, - { - "id": "Selection.moveCursorBy", - "type": "class method", - "description": "Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.", - "short_description": "Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.", - "line": 16567, - "author": [], - "related": "EditSession.documentToScreenPosition", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "rows", - "description": "The number of rows to move by", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "chars", - "description": "The number of characters to move by", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorBy", - "name_prefix": "Selection.", - "path": "Selection.moveCursorBy", - "outFile": "selection.html#Selection.moveCursorBy" - }, - { - "id": "Selection.moveCursorDown", - "type": "class method", - "description": "Moves the cursor down one row.", - "short_description": "Moves the cursor down one row.", - "line": 16241, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorDown", - "name_prefix": "Selection.", - "path": "Selection.moveCursorDown", - "outFile": "selection.html#Selection.moveCursorDown" - }, - { - "id": "Selection.moveCursorFileEnd", - "type": "class method", - "description": "Moves the cursor to the end of the file.", - "short_description": "Moves the cursor to the end of the file.", - "line": 16350, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorFileEnd", - "name_prefix": "Selection.", - "path": "Selection.moveCursorFileEnd", - "outFile": "selection.html#Selection.moveCursorFileEnd" - }, - { - "id": "Selection.moveCursorFileStart", - "type": "class method", - "description": "Moves the cursor to the start of the file.", - "short_description": "Moves the cursor to the start of the file.", - "line": 16360, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorFileStart", - "name_prefix": "Selection.", - "path": "Selection.moveCursorFileStart", - "outFile": "selection.html#Selection.moveCursorFileStart" - }, - { - "id": "Selection.moveCursorLeft", - "type": "class method", - "description": "Moves the cursor left one column.", - "short_description": "Moves the cursor left one column.", - "line": 16249, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorLeft", - "name_prefix": "Selection.", - "path": "Selection.moveCursorLeft", - "outFile": "selection.html#Selection.moveCursorLeft" - }, - { - "id": "Selection.moveCursorLineEnd", - "type": "class method", - "description": "Moves the cursor to the end of the line.", - "short_description": "Moves the cursor to the end of the line.", - "line": 16331, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorLineEnd", - "name_prefix": "Selection.", - "path": "Selection.moveCursorLineEnd", - "outFile": "selection.html#Selection.moveCursorLineEnd" - }, - { - "id": "Selection.moveCursorLineStart", - "type": "class method", - "description": "Moves the cursor to the start of the line.", - "short_description": "Moves the cursor to the start of the line.", - "line": 16299, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorLineStart", - "name_prefix": "Selection.", - "path": "Selection.moveCursorLineStart", - "outFile": "selection.html#Selection.moveCursorLineStart" - }, - { - "id": "Selection.moveCursorLongWordLeft", - "type": "class method", - "description": "Moves the cursor to the word on the left.", - "short_description": "Moves the cursor to the word on the left.", - "line": 16414, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorLongWordLeft", - "name_prefix": "Selection.", - "path": "Selection.moveCursorLongWordLeft", - "outFile": "selection.html#Selection.moveCursorLongWordLeft" - }, - { - "id": "Selection.moveCursorLongWordRight", - "type": "class method", - "description": "Moves the cursor to the word on the right.", - "short_description": "Moves the cursor to the word on the right.", - "line": 16368, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorLongWordRight", - "name_prefix": "Selection.", - "path": "Selection.moveCursorLongWordRight", - "outFile": "selection.html#Selection.moveCursorLongWordRight" - }, - { - "id": "Selection.moveCursorRight", - "type": "class method", - "description": "Moves the cursor right one column.", - "short_description": "Moves the cursor right one column.", - "line": 16274, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorRight", - "name_prefix": "Selection.", - "path": "Selection.moveCursorRight", - "outFile": "selection.html#Selection.moveCursorRight" - }, - { - "id": "Selection.moveCursorTo", - "type": "class method", - "description": "Moves the cursor to the row and column provided. [If `preventUpdateDesiredColumn` is `true`, then the cursor stays in the same column position as its original point.]{: #preventUpdateBoolDesc}", - "short_description": "Moves the cursor to the row and column provided. [If `preventUpdateDesiredColumn` is `true`, then the cursor stays in the same column position as its original point.]{: #preventUpdateBoolDesc}", - "line": 16604, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to move to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column to move to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "keepDesiredColumn", - "description": "[If `true`, the cursor move does not respect the previous column]{: #preventUpdateBool}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorTo", - "name_prefix": "Selection.", - "path": "Selection.moveCursorTo", - "outFile": "selection.html#Selection.moveCursorTo" - }, - { - "id": "Selection.moveCursorToPosition", - "type": "class method", - "description": "Moves the selection to the position indicated by its `row` and `column`.", - "short_description": "Moves the selection to the position indicated by its `row` and `column`.", - "line": 16594, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "The position to move to", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorToPosition", - "name_prefix": "Selection.", - "path": "Selection.moveCursorToPosition", - "outFile": "selection.html#Selection.moveCursorToPosition" - }, - { - "id": "Selection.moveCursorToScreen", - "type": "class method", - "description": "Moves the cursor to the screen position indicated by row and column. {:preventUpdateBoolDesc}", - "short_description": "Moves the cursor to the screen position indicated by row and column. {:preventUpdateBoolDesc}", - "line": 16628, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to move to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column to move to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "keepDesiredColumn", - "description": "{:preventUpdateBool}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorToScreen", - "name_prefix": "Selection.", - "path": "Selection.moveCursorToScreen", - "outFile": "selection.html#Selection.moveCursorToScreen" - }, - { - "id": "Selection.moveCursorUp", - "type": "class method", - "description": "Moves the cursor up one row.", - "short_description": "Moves the cursor up one row.", - "line": 16233, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "moveCursorUp", - "name_prefix": "Selection.", - "path": "Selection.moveCursorUp", - "outFile": "selection.html#Selection.moveCursorUp" - }, - { - "id": "new Selection", - "type": "constructor", - "description": "Creates a new `Selection` object.", - "short_description": "Creates a new `Selection` object.", - "line": 15863, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The session to use", - "types": [ - "EditSession" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "new", - "name_prefix": "Selection.", - "path": "Selection.new", - "outFile": "selection.html#Selection.new" - }, - { - "id": "Selection.selectAll", - "type": "class method", - "description": "Selects all the text in the document.", - "short_description": "Selects all the text in the document.", - "line": 16033, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectAll", - "name_prefix": "Selection.", - "path": "Selection.selectAll", - "outFile": "selection.html#Selection.selectAll" - }, - { - "id": "Selection.selectAWord", - "type": "class method", - "description": "Selects a word, including its right whitespace.", - "short_description": "Selects a word, including its right whitespace.", - "line": 16199, - "author": [], - "related": "EditSession.getAWordRange", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectAWord", - "name_prefix": "Selection.", - "path": "Selection.selectAWord", - "outFile": "selection.html#Selection.selectAWord" - }, - { - "id": "Selection.selectDown", - "type": "class method", - "description": "Moves the selection down one row.", - "short_description": "Moves the selection down one row.", - "line": 16105, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectDown", - "name_prefix": "Selection.", - "path": "Selection.selectDown", - "outFile": "selection.html#Selection.selectDown" - }, - { - "id": "Selection.selectFileEnd", - "type": "class method", - "description": "Moves the selection to the end of the file.", - "short_description": "Moves the selection to the end of the file.", - "line": 16146, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectFileEnd", - "name_prefix": "Selection.", - "path": "Selection.selectFileEnd", - "outFile": "selection.html#Selection.selectFileEnd" - }, - { - "id": "Selection.selectFileStart", - "type": "class method", - "description": "Moves the selection to the start of the file.", - "short_description": "Moves the selection to the start of the file.", - "line": 16154, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectFileStart", - "name_prefix": "Selection.", - "path": "Selection.selectFileStart", - "outFile": "selection.html#Selection.selectFileStart" - }, - { - "id": "Selection.selectLeft", - "type": "class method", - "description": "Moves the selection left one column.", - "short_description": "Moves the selection left one column.", - "line": 16122, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectLeft", - "name_prefix": "Selection.", - "path": "Selection.selectLeft", - "outFile": "selection.html#Selection.selectLeft" - }, - { - "id": "Selection.selectLine", - "type": "class method", - "description": "Selects the entire line.", - "short_description": "Selects the entire line.", - "line": 16226, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectLine", - "name_prefix": "Selection.", - "path": "Selection.selectLine", - "outFile": "selection.html#Selection.selectLine" - }, - { - "id": "Selection.selectLineEnd", - "type": "class method", - "description": "Moves the selection to the end of the current line.", - "short_description": "Moves the selection to the end of the current line.", - "line": 16138, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectLineEnd", - "name_prefix": "Selection.", - "path": "Selection.selectLineEnd", - "outFile": "selection.html#Selection.selectLineEnd" - }, - { - "id": "Selection.selectLineStart", - "type": "class method", - "description": "Moves the selection to the beginning of the current line.", - "short_description": "Moves the selection to the beginning of the current line.", - "line": 16130, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectLineStart", - "name_prefix": "Selection.", - "path": "Selection.selectLineStart", - "outFile": "selection.html#Selection.selectLineStart" - }, - { - "id": "Selection.selectRight", - "type": "class method", - "description": "Moves the selection right one column.", - "short_description": "Moves the selection right one column.", - "line": 16113, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectRight", - "name_prefix": "Selection.", - "path": "Selection.selectRight", - "outFile": "selection.html#Selection.selectRight" - }, - { - "id": "Selection.selectTo", - "type": "class method", - "description": "Moves the selection cursor to the indicated row and column.", - "short_description": "Moves the selection cursor to the indicated row and column.", - "line": 16070, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The row to select to", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The column to select to", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectTo", - "name_prefix": "Selection.", - "path": "Selection.selectTo", - "outFile": "selection.html#Selection.selectTo" - }, - { - "id": "Selection.selectToPosition", - "type": "class method", - "description": "Moves the selection cursor to the row and column indicated by `pos`.", - "short_description": "Moves the selection cursor to the row and column indicated by `pos`.", - "line": 16084, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "pos", - "description": "An object containing the row and column", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectToPosition", - "name_prefix": "Selection.", - "path": "Selection.selectToPosition", - "outFile": "selection.html#Selection.selectToPosition" - }, - { - "id": "Selection.selectUp", - "type": "class method", - "description": "Moves the selection up one row.", - "short_description": "Moves the selection up one row.", - "line": 16097, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectUp", - "name_prefix": "Selection.", - "path": "Selection.selectUp", - "outFile": "selection.html#Selection.selectUp" - }, - { - "id": "Selection.selectWord", - "type": "class method", - "description": "Selects an entire word boundary.", - "short_description": "Selects an entire word boundary.", - "line": 16191, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectWord", - "name_prefix": "Selection.", - "path": "Selection.selectWord", - "outFile": "selection.html#Selection.selectWord" - }, - { - "id": "Selection.selectWordLeft", - "type": "class method", - "description": "Moves the selection to the first word on the left.", - "short_description": "Moves the selection to the first word on the left.", - "line": 16170, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectWordLeft", - "name_prefix": "Selection.", - "path": "Selection.selectWordLeft", - "outFile": "selection.html#Selection.selectWordLeft" - }, - { - "id": "Selection.selectWordRight", - "type": "class method", - "description": "Moves the selection to the first word on the right.", - "short_description": "Moves the selection to the first word on the right.", - "line": 16162, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "selectWordRight", - "name_prefix": "Selection.", - "path": "Selection.selectWordRight", - "outFile": "selection.html#Selection.selectWordRight" - }, - { - "id": "Selection.setSelectionAnchor", - "type": "class method", - "description": "Sets the row and column position of the anchor. This function also emits the `'changeSelection'` event.", - "short_description": "Sets the row and column position of the anchor. This function also emits the `'changeSelection'` event.", - "line": 15930, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The new row", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The new column", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "setSelectionAnchor", - "name_prefix": "Selection.", - "path": "Selection.setSelectionAnchor", - "outFile": "selection.html#Selection.setSelectionAnchor" - }, - { - "id": "Selection.setSelectionRange", - "type": "class method", - "description": "Sets the selection to the provided range.", - "short_description": "Sets the selection to the provided range.", - "line": 16042, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "The range of text to select", - "types": [ - "Range" - ], - "optional": false - }, - { - "name": "reverse", - "description": "Indicates if the range should go backwards (`true`) or not", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "setSelectionRange", - "name_prefix": "Selection.", - "path": "Selection.setSelectionRange", - "outFile": "selection.html#Selection.setSelectionRange" - }, - { - "id": "Selection.shiftSelection", - "type": "class method", - "description": "Shifts the selection up (or down, if [[Selection.isBackwards `isBackwards()`]] is true) the given number of columns.", - "short_description": "Shifts the selection up (or down, if [[Selection.isBackwards `isBackwards()`]] is true) the given number of columns.", - "line": 15966, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "columns", - "description": "The number of columns to shift by", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "shiftSelection", - "name_prefix": "Selection.", - "path": "Selection.shiftSelection", - "outFile": "selection.html#Selection.shiftSelection" - }, - { - "id": "Selection@changeCursor", - "type": "event", - "description": "Emitted when the cursor position changes.", - "short_description": "Emitted when the cursor position changes.", - "line": 15849, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "changeCursor", - "name_prefix": "Selection@", - "path": "Selection.event.changeCursor", - "outFile": "selection.html#Selection.event.changeCursor" - }, - { - "id": "Selection@changeSelection", - "type": "event", - "description": "Emitted when the cursor selection changes.", - "short_description": "Emitted when the cursor selection changes.", - "line": 15856, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "cancelable": [], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "name": "changeSelection", - "name_prefix": "Selection@", - "path": "Selection.event.changeSelection", - "outFile": "selection.html#Selection.event.changeSelection" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/selection.js", - "subclasses": [], - "name": "Selection", - "path": "Selection", - "outFile": "selection.html" - }, - { - "id": "Split", - "type": "class", - "incomplete": true, - "line": 16682, - "author": [], - "aliases": [], - "children": [ - { - "id": "Split.blur", - "type": "class method", - "description": "Blurs the current editor.", - "short_description": "Blurs the current editor.", - "line": 16795, - "author": [], - "related": "Editor.blur", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "blur", - "name_prefix": "Split.", - "path": "Split.blur", - "outFile": "split.html#Split.blur" - }, - { - "id": "Split.focus", - "type": "class method", - "description": "Focuses the current editor.", - "short_description": "Focuses the current editor.", - "line": 16787, - "author": [], - "related": "Editor.focus", - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "focus", - "name_prefix": "Split.", - "path": "Split.focus", - "outFile": "split.html#Split.focus" - }, - { - "id": "Split.forEach", - "type": "class method", - "incomplete": true, - "line": 16829, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "callback", - "description": "A callback function to execute", - "types": [ - "Function" - ], - "optional": false - }, - { - "name": "scope", - "description": "The default scope for the callback\n\nExecutes `callback` on all of the available editors.", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "forEach", - "name_prefix": "Split.", - "path": "Split.forEach", - "outFile": "split.html#Split.forEach" - }, - { - "id": "Split.getCurrentEditor", - "type": "class method", - "description": "Returns the current editor.", - "short_description": "Returns the current editor.", - "line": 16778, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Editor", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "getCurrentEditor", - "name_prefix": "Split.", - "path": "Split.getCurrentEditor", - "outFile": "split.html#Split.getCurrentEditor" - }, - { - "id": "Split.getEditor", - "type": "class method", - "incomplete": true, - "line": 16768, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "idx", - "description": "The index of the editor you want\n\nReturns the editor identified by the index `idx`.", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "getEditor", - "name_prefix": "Split.", - "path": "Split.getEditor", - "outFile": "split.html#Split.getEditor" - }, - { - "id": "Split.getOrientation", - "type": "class method", - "description": "Returns the orientation.", - "short_description": "Returns the orientation.", - "line": 16917, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "getOrientation", - "name_prefix": "Split.", - "path": "Split.getOrientation", - "outFile": "split.html#Split.getOrientation" - }, - { - "id": "Split.getSplits", - "type": "class method", - "description": "Returns the number of splits.", - "short_description": "Returns the number of splits.", - "line": 16759, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "getSplits", - "name_prefix": "Split.", - "path": "Split.getSplits", - "outFile": "split.html#Split.getSplits" - }, - { - "id": "Split.resize", - "type": "class method", - "description": "Split.resize() -> Void\n\n\nResizes the editor.", - "short_description": "Split.resize() -> Void\n", - "line": 16941, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "resize", - "name_prefix": "Split.", - "path": "Split.resize", - "outFile": "split.html#Split.resize" - }, - { - "id": "Split.setFontSize", - "type": "class method", - "incomplete": true, - "line": 16843, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "size", - "description": "The new font size\n\nSets the font size, in pixels, for all the available editors.", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "setFontSize", - "name_prefix": "Split.", - "path": "Split.setFontSize", - "outFile": "split.html#Split.setFontSize" - }, - { - "id": "Split.setKeyboardHandler", - "type": "class method", - "incomplete": true, - "line": 16816, - "author": [], - "related": "editor.setKeyboardHandler", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "keybinding", - "description": "Sets the keyboard handler for the editor.", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "setKeyboardHandler", - "name_prefix": "Split.", - "path": "Split.setKeyboardHandler", - "outFile": "split.html#Split.setKeyboardHandler" - }, - { - "id": "Split.setOrientation", - "type": "class method", - "incomplete": true, - "line": 16926, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "orientation", - "description": "The new orientation value\n\nSets the orientation.", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "setOrientation", - "name_prefix": "Split.", - "path": "Split.setOrientation", - "outFile": "split.html#Split.setOrientation" - }, - { - "id": "Split.setSession", - "type": "class method", - "incomplete": true, - "line": 16883, - "author": [], - "related": "Editor.setSession", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The new edit session", - "types": [ - "EditSession" - ], - "optional": false - }, - { - "name": "idx", - "description": "The editor's index you're interested in\n\nSets a new [[EditSession `EditSession`]] for the indicated editor.", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "setSession", - "name_prefix": "Split.", - "path": "Split.setSession", - "outFile": "split.html#Split.setSession" - }, - { - "id": "Split.setTheme", - "type": "class method", - "incomplete": true, - "line": 16803, - "author": [], - "related": "Editor.setTheme", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "theme", - "description": "The name of the theme to set\n\nSets a theme for each of the available editors.", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "name": "setTheme", - "name_prefix": "Split.", - "path": "Split.setTheme", - "outFile": "split.html#Split.setTheme" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/split.js", - "subclasses": [], - "name": "Split", - "path": "Split", - "outFile": "split.html" - }, - { - "id": "TokenIterator", - "type": "class", - "description": "This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.", - "short_description": "This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.", - "line": 16974, - "author": [], - "aliases": [], - "children": [ - { - "id": "TokenIterator.getCurrentToken", - "type": "class method", - "description": "Returns the current tokenized string.", - "short_description": "Returns the current tokenized string.", - "line": 17045, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "getCurrentToken", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.getCurrentToken", - "outFile": "token_iterator.html#TokenIterator.getCurrentToken" - }, - { - "id": "TokenIterator.getCurrentTokenColumn", - "type": "class method", - "description": "Returns the current column.", - "short_description": "Returns the current column.", - "line": 17063, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "getCurrentTokenColumn", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.getCurrentTokenColumn", - "outFile": "token_iterator.html#TokenIterator.getCurrentTokenColumn" - }, - { - "id": "TokenIterator.getCurrentTokenRow", - "type": "class method", - "description": "Returns the current row.", - "short_description": "Returns the current row.", - "line": 17054, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "getCurrentTokenRow", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.getCurrentTokenRow", - "outFile": "token_iterator.html#TokenIterator.getCurrentTokenRow" - }, - { - "id": "new TokenIterator", - "type": "constructor", - "description": "Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.", - "short_description": "Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.", - "line": 16981, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "The session to associate with", - "types": [ - "EditSession" - ], - "optional": false - }, - { - "name": "initialRow", - "description": "The row to start the tokenizing at", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "initialColumn", - "description": "The column to start the tokenizing at", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "new", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.new", - "outFile": "token_iterator.html#TokenIterator.new" - }, - { - "id": "TokenIterator.stepBackward", - "type": "class method", - "description": "Tokenizes all the items from the current point to the row prior in the document.", - "short_description": "Tokenizes all the items from the current point to the row prior in the document.", - "line": 17000, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "stepBackward", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.stepBackward", - "outFile": "token_iterator.html#TokenIterator.stepBackward" - }, - { - "id": "TokenIterator.stepForward", - "type": "class method", - "description": "Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns `null`. Otherwise, it returns the tokenized string.", - "short_description": "Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns `null`. Otherwise, it returns the tokenized string.", - "line": 17022, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "name": "stepForward", - "name_prefix": "TokenIterator.", - "path": "TokenIterator.stepForward", - "outFile": "token_iterator.html#TokenIterator.stepForward" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/token_iterator.js", - "subclasses": [], - "name": "TokenIterator", - "path": "TokenIterator", - "outFile": "token_iterator.html" - }, - { - "id": "Tokenizer", - "type": "class", - "description": "This class takes a set of highlighting rules, and creates a tokenizer out of them. For more information, see [the wiki on extending highlighters](https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#wiki-extendingTheHighlighter).", - "short_description": "This class takes a set of highlighting rules, and creates a tokenizer out of them. For more information, see [the wiki on extending highlighters](https://github.com/ajaxorg/ace/wiki/Creating-or-Extending-an-Edit-Mode#wiki-extendingTheHighlighter).", - "line": 17105, - "author": [], - "aliases": [], - "children": [ - { - "id": "Tokenizer.getLineTokens", - "type": "class method", - "description": "Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state.", - "short_description": "Returns an object containing two properties: `tokens`, which contains all the tokens; and `state`, the current state.", - "line": 17167, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "line", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "startState", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", - "name": "getLineTokens", - "name_prefix": "Tokenizer.", - "path": "Tokenizer.getLineTokens", - "outFile": "tokenizer.html#Tokenizer.getLineTokens" - }, - { - "id": "new Tokenizer", - "type": "constructor", - "description": "Constructs a new tokenizer based on the given rules and flags.", - "short_description": "Constructs a new tokenizer based on the given rules and flags.", - "line": 17112, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "rules", - "description": "The highlighting rules", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "flag", - "description": "Any additional regular expression flags to pass (like \"i\" for case insensitive)", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", - "name": "new", - "name_prefix": "Tokenizer.", - "path": "Tokenizer.new", - "outFile": "tokenizer.html#Tokenizer.new" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/tokenizer.js", - "subclasses": [], - "name": "Tokenizer", - "path": "Tokenizer", - "outFile": "tokenizer.html" - }, - { - "id": "UndoManager", - "type": "class", - "description": "This object maintains the undo stack for an [[EditSession `EditSession`]].", - "short_description": "This object maintains the undo stack for an [[EditSession `EditSession`]].", - "line": 17363, - "author": [], - "aliases": [], - "children": [ - { - "id": "UndoManager.execute", - "type": "class method", - "description": "Provides a means for implementing your own undo manager. `options` has one property, `args`, an [[Array `Array`]], with two elements:\n\n- `args[0]` is an array of deltas\n- `args[1]` is the document to associate with", - "short_description": "Provides a means for implementing your own undo manager. `options` has one property, `args`, an [[Array `Array`]], with two elements:\n", - "line": 17383, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "options", - "description": "Contains additional properties", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "execute", - "name_prefix": "UndoManager.", - "path": "UndoManager.execute", - "outFile": "undomanager.html#UndoManager.execute" - }, - { - "id": "UndoManager.hasRedo", - "type": "class method", - "description": "Returns `true` if there are redo operations left to perform.", - "short_description": "Returns `true` if there are redo operations left to perform.", - "line": 17452, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "hasRedo", - "name_prefix": "UndoManager.", - "path": "UndoManager.hasRedo", - "outFile": "undomanager.html#UndoManager.hasRedo" - }, - { - "id": "UndoManager.hasUndo", - "type": "class method", - "description": "Returns `true` if there are undo operations left to perform.", - "short_description": "Returns `true` if there are undo operations left to perform.", - "line": 17443, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "hasUndo", - "name_prefix": "UndoManager.", - "path": "UndoManager.hasUndo", - "outFile": "undomanager.html#UndoManager.hasUndo" - }, - { - "id": "new UndoManager", - "type": "constructor", - "description": "Resets the current undo state and creates a new `UndoManager`.", - "short_description": "Resets the current undo state and creates a new `UndoManager`.", - "line": 17370, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "new", - "name_prefix": "UndoManager.", - "path": "UndoManager.new", - "outFile": "undomanager.html#UndoManager.new" - }, - { - "id": "UndoManager.redo", - "type": "class method", - "description": "[Perform a redo operation on the document, reimplementing the last change.]{: #UndoManager.redo}", - "short_description": "[Perform a redo operation on the document, reimplementing the last change.]{: #UndoManager.redo}", - "line": 17417, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dontSelect", - "description": "{:dontSelect}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "redo", - "name_prefix": "UndoManager.", - "path": "UndoManager.redo", - "outFile": "undomanager.html#UndoManager.redo" - }, - { - "id": "UndoManager.reset", - "type": "class method", - "description": "Destroys the stack of undo and redo redo operations.", - "short_description": "Destroys the stack of undo and redo redo operations.", - "line": 17434, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "reset", - "name_prefix": "UndoManager.", - "path": "UndoManager.reset", - "outFile": "undomanager.html#UndoManager.reset" - }, - { - "id": "UndoManager.undo", - "type": "class method", - "description": "[Perform an undo operation on the document, reverting the last change.]{: #UndoManager.undo}", - "short_description": "[Perform an undo operation on the document, reverting the last change.]{: #UndoManager.undo}", - "line": 17399, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dontSelect", - "description": "{:dontSelect}", - "types": [ - "Boolean" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Range", - "description": "The range of the undo." - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "name": "undo", - "name_prefix": "UndoManager.", - "path": "UndoManager.undo", - "outFile": "undomanager.html#UndoManager.undo" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/undomanager.js", - "subclasses": [], - "name": "UndoManager", - "path": "UndoManager", - "outFile": "undomanager.html" - }, - { - "id": "VirtualRenderer", - "type": "class", - "description": "The class that is responsible for drawing everything you see on the screen!", - "short_description": "The class that is responsible for drawing everything you see on the screen!", - "line": 17556, - "author": [], - "aliases": [], - "children": [ - { - "id": "VirtualRenderer.addGutterDecoration", - "type": "class method", - "description": "Deprecated; (moved to [[EditSession]])", - "short_description": "Deprecated; (moved to [[EditSession]])", - "line": 18386, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "className", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "addGutterDecoration", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.addGutterDecoration", - "outFile": "virtual_renderer.html#VirtualRenderer.addGutterDecoration" - }, - { - "id": "VirtualRenderer.adjustWrapLimit", - "type": "class method", - "description": "Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.", - "short_description": "Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.", - "line": 17845, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "adjustWrapLimit", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.adjustWrapLimit", - "outFile": "virtual_renderer.html#VirtualRenderer.adjustWrapLimit" - }, - { - "id": "VirtualRenderer.destroy", - "type": "class method", - "description": "Destroys the text and cursor layers for this renderer.", - "short_description": "Destroys the text and cursor layers for this renderer.", - "line": 18874, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "destroy", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.destroy", - "outFile": "virtual_renderer.html#VirtualRenderer.destroy" - }, - { - "id": "VirtualRenderer.getAnimatedScroll", - "type": "class method", - "description": "Returns whether an animated scroll happens or not.", - "short_description": "Returns whether an animated scroll happens or not.", - "line": 17866, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getAnimatedScroll", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getAnimatedScroll", - "outFile": "virtual_renderer.html#VirtualRenderer.getAnimatedScroll" - }, - { - "id": "VirtualRenderer.getContainerElement", - "type": "class method", - "description": "Returns the root element containing this renderer.", - "short_description": "Returns the root element containing this renderer.", - "line": 18032, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "DOMElement", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getContainerElement", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getContainerElement", - "outFile": "virtual_renderer.html#VirtualRenderer.getContainerElement" - }, - { - "id": "VirtualRenderer.getFirstFullyVisibleRow", - "type": "class method", - "description": "Returns the index of the first fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", - "short_description": "Returns the index of the first fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", - "line": 18097, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getFirstFullyVisibleRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getFirstFullyVisibleRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getFirstFullyVisibleRow" - }, - { - "id": "VirtualRenderer.getFirstVisibleRow", - "type": "class method", - "description": "[Returns the index of the first visible row.]{: #VirtualRenderer.getFirstVisibleRow}", - "short_description": "[Returns the index of the first visible row.]{: #VirtualRenderer.getFirstVisibleRow}", - "line": 18088, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getFirstVisibleRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getFirstVisibleRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getFirstVisibleRow" - }, - { - "id": "VirtualRenderer.getHScrollBarAlwaysVisible", - "type": "class method", - "description": "Returns whether the horizontal scrollbar is set to be always visible.", - "short_description": "Returns whether the horizontal scrollbar is set to be always visible.", - "line": 18144, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getHScrollBarAlwaysVisible", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getHScrollBarAlwaysVisible", - "outFile": "virtual_renderer.html#VirtualRenderer.getHScrollBarAlwaysVisible" - }, - { - "id": "VirtualRenderer.getLastFullyVisibleRow", - "type": "class method", - "description": "Returns the index of the last fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", - "short_description": "Returns the index of the last fully visible row. \"Fully\" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.", - "line": 18106, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getLastFullyVisibleRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getLastFullyVisibleRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getLastFullyVisibleRow" - }, - { - "id": "VirtualRenderer.getLastVisibleRow", - "type": "class method", - "description": "[Returns the index of the last visible row.]{: #VirtualRenderer.getLastVisibleRow}", - "short_description": "[Returns the index of the last visible row.]{: #VirtualRenderer.getLastVisibleRow}", - "line": 18116, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getLastVisibleRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getLastVisibleRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getLastVisibleRow" - }, - { - "id": "VirtualRenderer.getMouseEventTarget", - "type": "class method", - "description": "Returns the element that the mouse events are attached to", - "short_description": "Returns the element that the mouse events are attached to", - "line": 18041, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "DOMElement", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getMouseEventTarget", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getMouseEventTarget", - "outFile": "virtual_renderer.html#VirtualRenderer.getMouseEventTarget" - }, - { - "id": "VirtualRenderer.getPrintMarginColumn", - "type": "class method", - "description": "Returns whether the print margin column is being shown or not.", - "short_description": "Returns whether the print margin column is being shown or not.", - "line": 17941, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getPrintMarginColumn", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getPrintMarginColumn", - "outFile": "virtual_renderer.html#VirtualRenderer.getPrintMarginColumn" - }, - { - "id": "VirtualRenderer.getScrollBottomRow", - "type": "class method", - "description": "Returns the last visible row, regardless of whether it's fully visible or not.", - "short_description": "Returns the last visible row, regardless of whether it's fully visible or not.", - "line": 18515, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getScrollBottomRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getScrollBottomRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getScrollBottomRow" - }, - { - "id": "VirtualRenderer.getScrollLeft", - "type": "class method", - "description": "{:EditSession.getScrollLeft}", - "short_description": "{:EditSession.getScrollLeft}", - "line": 18497, - "author": [], - "related": "EditSession.getScrollLeft", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getScrollLeft", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getScrollLeft", - "outFile": "virtual_renderer.html#VirtualRenderer.getScrollLeft" - }, - { - "id": "VirtualRenderer.getScrollTop", - "type": "class method", - "description": "{:EditSession.getScrollTop}", - "short_description": "{:EditSession.getScrollTop}", - "line": 18488, - "author": [], - "related": "EditSession.getScrollTop", - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getScrollTop", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getScrollTop", - "outFile": "virtual_renderer.html#VirtualRenderer.getScrollTop" - }, - { - "id": "VirtualRenderer.getScrollTopRow", - "type": "class method", - "description": "Returns the first visible row, regardless of whether it's fully visible or not.", - "short_description": "Returns the first visible row, regardless of whether it's fully visible or not.", - "line": 18506, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getScrollTopRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getScrollTopRow", - "outFile": "virtual_renderer.html#VirtualRenderer.getScrollTopRow" - }, - { - "id": "VirtualRenderer.getShowGutter", - "type": "class method", - "description": "Returns `true` if the gutter is being shown.", - "short_description": "Returns `true` if the gutter is being shown.", - "line": 17950, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getShowGutter", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getShowGutter", - "outFile": "virtual_renderer.html#VirtualRenderer.getShowGutter" - }, - { - "id": "VirtualRenderer.getShowInvisibles", - "type": "class method", - "description": "Returns whether invisible characters are being shown or not.", - "short_description": "Returns whether invisible characters are being shown or not.", - "line": 17887, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getShowInvisibles", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getShowInvisibles", - "outFile": "virtual_renderer.html#VirtualRenderer.getShowInvisibles" - }, - { - "id": "VirtualRenderer.getShowPrintMargin", - "type": "class method", - "description": "Returns whether the print margin is being shown or not.", - "short_description": "Returns whether the print margin is being shown or not.", - "line": 17919, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getShowPrintMargin", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getShowPrintMargin", - "outFile": "virtual_renderer.html#VirtualRenderer.getShowPrintMargin" - }, - { - "id": "VirtualRenderer.getTextAreaContainer", - "type": "class method", - "description": "Returns the element to which the hidden text area is added.", - "short_description": "Returns the element to which the hidden text area is added.", - "line": 18050, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "DOMElement", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getTextAreaContainer", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getTextAreaContainer", - "outFile": "virtual_renderer.html#VirtualRenderer.getTextAreaContainer" - }, - { - "id": "VirtualRenderer.getTheme", - "type": "class method", - "description": "[Returns the path of the current theme.]{: #VirtualRenderer.getTheme}", - "short_description": "[Returns the path of the current theme.]{: #VirtualRenderer.getTheme}", - "line": 18842, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - }, - "returns": [ - { - "type": "String", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "getTheme", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.getTheme", - "outFile": "virtual_renderer.html#VirtualRenderer.getTheme" - }, - { - "id": "VirtualRenderer.hideComposition", - "type": "class method", - "description": "Hides the current composition.", - "short_description": "Hides the current composition.", - "line": 18761, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "hideComposition", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.hideComposition", - "outFile": "virtual_renderer.html#VirtualRenderer.hideComposition" - }, - { - "id": "VirtualRenderer.hideCursor", - "type": "class method", - "description": "Hides the cursor icon.", - "short_description": "Hides the cursor icon.", - "line": 18431, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "hideCursor", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.hideCursor", - "outFile": "virtual_renderer.html#VirtualRenderer.hideCursor" - }, - { - "id": "VirtualRenderer.isScrollableBy", - "type": "class method", - "description": "Returns `true` if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.", - "short_description": "Returns `true` if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.", - "line": 18657, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltaX", - "description": "The x value to scroll by", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "deltaY", - "description": "The y value to scroll by", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Boolean", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "isScrollableBy", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.isScrollableBy", - "outFile": "virtual_renderer.html#VirtualRenderer.isScrollableBy" - }, - { - "id": "new VirtualRenderer", - "type": "constructor", - "description": "Constructs a new `VirtualRenderer` within the `container` specified, applying the given `theme`.", - "short_description": "Constructs a new `VirtualRenderer` within the `container` specified, applying the given `theme`.", - "line": 17563, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "container", - "description": "The root element of the editor", - "types": [ - "DOMElement" - ], - "optional": false - }, - { - "name": "theme", - "description": "The starting theme", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "new", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.new", - "outFile": "virtual_renderer.html#VirtualRenderer.new" - }, - { - "id": "VirtualRenderer.onResize", - "type": "class method", - "description": "[Triggers a resize of the editor.]{: #VirtualRenderer.onResize}", - "short_description": "[Triggers a resize of the editor.]{: #VirtualRenderer.onResize}", - "line": 17787, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "force", - "description": "If `true`, recomputes the size, even if the height and width haven't changed", - "types": [ - "Boolean" - ], - "optional": false - }, - { - "name": "gutterWidth", - "description": "The width of the gutter in pixels", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "width", - "description": "The width of the editor in pixels", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "height", - "description": "The hiehgt of the editor, in pixels", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "onResize", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.onResize", - "outFile": "virtual_renderer.html#VirtualRenderer.onResize" - }, - { - "id": "VirtualRenderer.removeGutterDecoration", - "type": "class method", - "description": "Deprecated; (moved to [[EditSession]])", - "short_description": "Deprecated; (moved to [[EditSession]])", - "line": 18395, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "className", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "removeGutterDecoration", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.removeGutterDecoration", - "outFile": "virtual_renderer.html#VirtualRenderer.removeGutterDecoration" - }, - { - "id": "VirtualRenderer.scrollBy", - "type": "class method", - "description": "Scrolls the editor across both x- and y-axes.", - "short_description": "Scrolls the editor across both x- and y-axes.", - "line": 18645, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "deltaX", - "description": "The x value to scroll by", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "deltaY", - "description": "The y value to scroll by", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollBy", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollBy", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollBy" - }, - { - "id": "VirtualRenderer.scrollCursorIntoView", - "type": "class method", - "description": "Scrolls the cursor into the first visibile area of the editor", - "short_description": "Scrolls the cursor into the first visibile area of the editor", - "line": 18453, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "cursor", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "offset", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollCursorIntoView", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollCursorIntoView", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollCursorIntoView" - }, - { - "id": "VirtualRenderer.scrollToLine", - "type": "class method", - "description": "Gracefully scrolls the editor to the row indicated.", - "short_description": "Gracefully scrolls the editor to the row indicated.", - "line": 18563, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "line", - "description": "A line number", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "center", - "description": "If `true`, centers the editor the to indicated line", - "types": [ - "Boolean" - ], - "optional": false - }, - { - "name": "animate", - "description": "If `true` animates scrolling", - "types": [ - "Boolean" - ], - "optional": false - }, - { - "name": "callback", - "description": "Function to be called after the animation has finished", - "types": [ - "Function" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollToLine", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollToLine", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollToLine" - }, - { - "id": "VirtualRenderer.scrollToRow", - "type": "class method", - "description": "Gracefully scrolls from the top of the editor to the row indicated.", - "short_description": "Gracefully scrolls from the top of the editor to the row indicated.", - "line": 18524, - "author": [], - "related": "EditSession.setScrollTop", - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "A row id", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollToRow", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollToRow", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollToRow" - }, - { - "id": "VirtualRenderer.scrollToX", - "type": "class method", - "description": "Scrolls the editor across the x-axis to the pixel indicated.", - "short_description": "Scrolls the editor across the x-axis to the pixel indicated.", - "line": 18629, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollLeft", - "description": "The position to scroll to", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollToX", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollToX", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollToX" - }, - { - "id": "VirtualRenderer.scrollToY", - "type": "class method", - "description": "Scrolls the editor to the y pixel indicated.", - "short_description": "Scrolls the editor to the y pixel indicated.", - "line": 18613, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "scrollTop", - "description": "The position to scroll to", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Number", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "scrollToY", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.scrollToY", - "outFile": "virtual_renderer.html#VirtualRenderer.scrollToY" - }, - { - "id": "VirtualRenderer.setAnimatedScroll", - "type": "class method", - "description": "Identifies whether you want to have an animated scroll or not.", - "short_description": "Identifies whether you want to have an animated scroll or not.", - "line": 17855, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "shouldAnimate", - "description": "Set to `true` to show animated scrolls", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setAnimatedScroll", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setAnimatedScroll", - "outFile": "virtual_renderer.html#VirtualRenderer.setAnimatedScroll" - }, - { - "id": "VirtualRenderer.setAnnotations", - "type": "class method", - "description": "Sets annotations for the gutter.", - "short_description": "Sets annotations for the gutter.", - "line": 18411, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "annotations", - "description": "An array containing annotations", - "types": [ - "Array" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setAnnotations", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setAnnotations", - "outFile": "virtual_renderer.html#VirtualRenderer.setAnnotations" - }, - { - "id": "VirtualRenderer.setCompositionText", - "type": "class method", - "incomplete": true, - "line": 18752, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "text", - "description": "A string of text to use\n\nSets the inner text of the current composition to `text`.", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setCompositionText", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setCompositionText", - "outFile": "virtual_renderer.html#VirtualRenderer.setCompositionText" - }, - { - "id": "VirtualRenderer.setHScrollBarAlwaysVisible", - "type": "class method", - "description": "Identifies whether you want to show the horizontal scrollbar or not.", - "short_description": "Identifies whether you want to show the horizontal scrollbar or not.", - "line": 18153, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "alwaysVisible", - "description": "Set to `true` to make the horizontal scroll bar visible", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setHScrollBarAlwaysVisible", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setHScrollBarAlwaysVisible", - "outFile": "virtual_renderer.html#VirtualRenderer.setHScrollBarAlwaysVisible" - }, - { - "id": "VirtualRenderer.setPadding", - "type": "class method", - "description": "Sets the padding for all the layers.", - "short_description": "Sets the padding for all the layers.", - "line": 18127, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "padding", - "description": "A new padding value (in pixels)", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setPadding", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setPadding", - "outFile": "virtual_renderer.html#VirtualRenderer.setPadding" - }, - { - "id": "VirtualRenderer.setPrintMarginColumn", - "type": "class method", - "description": "Identifies whether you want to show the print margin column or not.", - "short_description": "Identifies whether you want to show the print margin column or not.", - "line": 17929, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showPrintMargin", - "description": "Set to `true` to show the print margin column", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setPrintMarginColumn", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setPrintMarginColumn", - "outFile": "virtual_renderer.html#VirtualRenderer.setPrintMarginColumn" - }, - { - "id": "VirtualRenderer.setSession", - "type": "class method", - "description": "Associates the renderer with an [[EditSession `EditSession`]].", - "short_description": "Associates the renderer with an [[EditSession `EditSession`]].", - "line": 17706, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "session", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setSession", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setSession", - "outFile": "virtual_renderer.html#VirtualRenderer.setSession" - }, - { - "id": "VirtualRenderer.setShowGutter", - "type": "class method", - "description": "Identifies whether you want to show the gutter or not.", - "short_description": "Identifies whether you want to show the gutter or not.", - "line": 17959, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "show", - "description": "Set to `true` to show the gutter", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setShowGutter", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setShowGutter", - "outFile": "virtual_renderer.html#VirtualRenderer.setShowGutter" - }, - { - "id": "VirtualRenderer.setShowInvisibles", - "type": "class method", - "description": "Identifies whether you want to show invisible characters or not.", - "short_description": "Identifies whether you want to show invisible characters or not.", - "line": 17875, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showInvisibles", - "description": "Set to `true` to show invisibles", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setShowInvisibles", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setShowInvisibles", - "outFile": "virtual_renderer.html#VirtualRenderer.setShowInvisibles" - }, - { - "id": "VirtualRenderer.setShowPrintMargin", - "type": "class method", - "description": "Identifies whether you want to show the print margin or not.", - "short_description": "Identifies whether you want to show the print margin or not.", - "line": 17907, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "showPrintMargin", - "description": "Set to `true` to show the print margin", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setShowPrintMargin", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setShowPrintMargin", - "outFile": "virtual_renderer.html#VirtualRenderer.setShowPrintMargin" - }, - { - "id": "VirtualRenderer.setStyle", - "type": "class method", - "description": "[Adds a new class, `style`, to the editor.]{: #VirtualRenderer.setStyle}", - "short_description": "[Adds a new class, `style`, to the editor.]{: #VirtualRenderer.setStyle}", - "line": 18854, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "style", - "description": "A class name", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setStyle", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setStyle", - "outFile": "virtual_renderer.html#VirtualRenderer.setStyle" - }, - { - "id": "VirtualRenderer.setTheme", - "type": "class method", - "description": "[Sets a new theme for the editor. `theme` should exist, and be a directory path, like `ace/theme/textmate`.]{: #VirtualRenderer.setTheme}", - "short_description": "[Sets a new theme for the editor. `theme` should exist, and be a directory path, like `ace/theme/textmate`.]{: #VirtualRenderer.setTheme}", - "line": 18782, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "theme", - "description": "The path to a theme", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "setTheme", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.setTheme", - "outFile": "virtual_renderer.html#VirtualRenderer.setTheme" - }, - { - "id": "VirtualRenderer.showComposition", - "type": "class method", - "incomplete": true, - "line": 18734, - "private": true, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "position", - "description": "", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "showComposition", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.showComposition", - "outFile": "virtual_renderer.html#VirtualRenderer.showComposition" - }, - { - "id": "VirtualRenderer.showCursor", - "type": "class method", - "description": "Shows the cursor icon.", - "short_description": "Shows the cursor icon.", - "line": 18439, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "showCursor", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.showCursor", - "outFile": "virtual_renderer.html#VirtualRenderer.showCursor" - }, - { - "id": "VirtualRenderer.textToScreenCoordinates", - "type": "class method", - "description": "Returns an object containing the `pageX` and `pageY` coordinates of the document position.", - "short_description": "Returns an object containing the `pageX` and `pageY` coordinates of the document position.", - "line": 18696, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "row", - "description": "The document row position", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "column", - "description": "The document column position", - "types": [ - "Number" - ], - "optional": false - } - ] - }, - "returns": [ - { - "type": "Object", - "description": "" - } - ] - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "textToScreenCoordinates", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.textToScreenCoordinates", - "outFile": "virtual_renderer.html#VirtualRenderer.textToScreenCoordinates" - }, - { - "id": "VirtualRenderer.unsetStyle", - "type": "class method", - "description": "[Removes the class `style` from the editor.]{: #VirtualRenderer.unsetStyle}", - "short_description": "[Removes the class `style` from the editor.]{: #VirtualRenderer.unsetStyle}", - "line": 18864, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "style", - "description": "A class name", - "types": [ - "String" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "unsetStyle", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.unsetStyle", - "outFile": "virtual_renderer.html#VirtualRenderer.unsetStyle" - }, - { - "id": "VirtualRenderer.updateBackMarkers", - "type": "class method", - "description": "Schedules an update to all the back markers in the document.", - "short_description": "Schedules an update to all the back markers in the document.", - "line": 18377, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateBackMarkers", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateBackMarkers", - "outFile": "virtual_renderer.html#VirtualRenderer.updateBackMarkers" - }, - { - "id": "VirtualRenderer.updateBreakpoints", - "type": "class method", - "description": "Redraw breakpoints.", - "short_description": "Redraw breakpoints.", - "line": 18403, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "rows", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateBreakpoints", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateBreakpoints", - "outFile": "virtual_renderer.html#VirtualRenderer.updateBreakpoints" - }, - { - "id": "VirtualRenderer.updateCursor", - "type": "class method", - "description": "Updates the cursor icon.", - "short_description": "Updates the cursor icon.", - "line": 18423, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateCursor", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateCursor", - "outFile": "virtual_renderer.html#VirtualRenderer.updateCursor" - }, - { - "id": "VirtualRenderer.updateFontSize", - "type": "class method", - "description": "Updates the font size.", - "short_description": "Updates the font size.", - "line": 17779, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateFontSize", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateFontSize", - "outFile": "virtual_renderer.html#VirtualRenderer.updateFontSize" - }, - { - "id": "VirtualRenderer.updateFrontMarkers", - "type": "class method", - "description": "Schedules an update to all the front markers in the document.", - "short_description": "Schedules an update to all the front markers in the document.", - "line": 18368, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateFrontMarkers", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateFrontMarkers", - "outFile": "virtual_renderer.html#VirtualRenderer.updateFrontMarkers" - }, - { - "id": "VirtualRenderer.updateFull", - "type": "class method", - "description": "Triggers a full update of all the layers, for all the rows.", - "short_description": "Triggers a full update of all the layers, for all the rows.", - "line": 17764, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "force", - "description": "If `true`, forces the changes through", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateFull", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateFull", - "outFile": "virtual_renderer.html#VirtualRenderer.updateFull" - }, - { - "id": "VirtualRenderer.updateLines", - "type": "class method", - "description": "Triggers a partial update of the text, from the range given by the two parameters.", - "short_description": "Triggers a partial update of the text, from the range given by the two parameters.", - "line": 17724, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "firstRow", - "description": "The first row to update", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "lastRow", - "description": "The last row to update", - "types": [ - "Number" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateLines", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateLines", - "outFile": "virtual_renderer.html#VirtualRenderer.updateLines" - }, - { - "id": "VirtualRenderer.updateText", - "type": "class method", - "description": "Triggers a full update of the text, for all the rows.", - "short_description": "Triggers a full update of the text, for all the rows.", - "line": 17757, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "updateText", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.updateText", - "outFile": "virtual_renderer.html#VirtualRenderer.updateText" - }, - { - "id": "VirtualRenderer.visualizeBlur", - "type": "class method", - "description": "Blurs the current container.", - "short_description": "Blurs the current container.", - "line": 18726, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "visualizeBlur", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.visualizeBlur", - "outFile": "virtual_renderer.html#VirtualRenderer.visualizeBlur" - }, - { - "id": "VirtualRenderer.visualizeFocus", - "type": "class method", - "description": "Focuses the current container.", - "short_description": "Focuses the current container.", - "line": 18718, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "name": "visualizeFocus", - "name_prefix": "VirtualRenderer.", - "path": "VirtualRenderer.visualizeFocus", - "outFile": "virtual_renderer.html#VirtualRenderer.visualizeFocus" - } - ], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/virtual_renderer.js", - "subclasses": [], - "name": "VirtualRenderer", - "path": "VirtualRenderer", - "outFile": "virtual_renderer.html" - }, - { - "id": ".addRange", - "type": "class method", - "description": "extension\nSelection.addRange(range, $blockChangeEvents)\n- range (Range): The new range to add\n- $blockChangeEvents (Boolean): Whether or not to block changing events\n\nAdds a range to a selection by entering multiselect mode, if necessary.", - "short_description": "extension\nSelection.addRange(range, $blockChangeEvents)\n- range (Range): The new range to add\n- $blockChangeEvents (Boolean): Whether or not to block changing events\n", - "line": 13729, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "$blockChangeEvents", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "addRange", - "name_prefix": ".", - "path": ".addRange", - "outFile": "multi_select.html#.addRange" - }, - { - "id": ".addSelectionMarker", - "type": "class method", - "description": "Editor.addSelectionMarker(orientedRange) -> Range\n- orientedRange (Range): A range containing a cursor\n\nAdds the selection and cursor.", - "short_description": "Editor.addSelectionMarker(orientedRange) -> Range\n- orientedRange (Range): A range containing a cursor\n", - "line": 13997, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "orientedRange", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "addSelectionMarker", - "name_prefix": ".", - "path": ".addSelectionMarker", - "outFile": "multi_select.html#.addSelectionMarker" - }, - { - "id": ".alignCursors", - "type": "class method", - "description": "extension\nEditor.alignCursors()\n\naligns cursors or selected text", - "short_description": "extension\nEditor.alignCursors()\n", - "line": 14339, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "alignCursors", - "name_prefix": ".", - "path": ".alignCursors", - "outFile": "multi_select.html#.alignCursors" - }, - { - "id": ".Editor", - "type": "class method", - "description": "Adds a cursor above or below the active cursor. .selectMoreLines", - "short_description": "Adds a cursor above or below the active cursor. .selectMoreLines", - "line": 14222, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dir", - "description": "The direction of lines to select: -1 for up, 1 for down", - "types": [ - "Number" - ], - "optional": false - }, - { - "name": "skip", - "description": "If `true`, removes the active selection range", - "types": [ - "Boolean" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "Editor", - "name_prefix": ".", - "path": ".Editor", - "outFile": "multi_select.html#.Editor" - }, - { - "id": ".exitMultiSelectMode", - "type": "class method", - "description": "Editor.exitMultiSelectMode() -> Void\n\nRemoves all the selections except the last added one.", - "short_description": "Editor.exitMultiSelectMode() -> Void\n", - "line": 14140, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "exitMultiSelectMode", - "name_prefix": ".", - "path": ".exitMultiSelectMode", - "outFile": "multi_select.html#.exitMultiSelectMode" - }, - { - "id": ".findAll", - "type": "class method", - "description": "Editor.findAll(needle, options, additive) -> Number\n- needle (String): The text to find\n- options (Object): The search options\n- additive (Boolean): keeps\n\nFinds and selects all the occurences of `needle`.", - "short_description": "Editor.findAll(needle, options, additive) -> Number\n- needle (String): The text to find\n- options (Object): The search options\n- additive (Boolean): keeps\n", - "line": 14191, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "needle", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "options", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "additive", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "findAll", - "name_prefix": ".", - "path": ".findAll", - "outFile": "multi_select.html#.findAll" - }, - { - "id": ".forEachSelection", - "type": "class method", - "description": "Editor.forEachSelection(cmd, args)\n- cmd (String): The command to execute\n- args (String): Any arguments for the command\n\nExecutes a command for each selection range.", - "short_description": "Editor.forEachSelection(cmd, args)\n- cmd (String): The command to execute\n- args (String): Any arguments for the command\n", - "line": 14103, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "cmd", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "args", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "forEachSelection", - "name_prefix": ".", - "path": ".forEachSelection", - "outFile": "multi_select.html#.forEachSelection" - }, - { - "id": ".mergeOverlappingRanges", - "type": "class method", - "description": "extension\nSelection.mergeOverlappingRanges()\n\nMerges overlapping ranges ensuring consistency after changes", - "short_description": "extension\nSelection.mergeOverlappingRanges()\n", - "line": 13792, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "mergeOverlappingRanges", - "name_prefix": ".", - "path": ".mergeOverlappingRanges", - "outFile": "multi_select.html#.mergeOverlappingRanges" - }, - { - "id": ".rectangularRangeBlock", - "type": "class method", - "description": "extension\nSelection.rectangularRangeBlock(screenCursor, screenAnchor, includeEmptyLines) -> Range\n- screenCursor (Cursor): The cursor to use\n- screenAnchor (Anchor): The anchor to use\n- includeEmptyLines (Boolean): If true, this includes ranges inside the block which are empty due to clipping\n\nGets list of ranges composing rectangular block on the screen", - "short_description": "extension\nSelection.rectangularRangeBlock(screenCursor, screenAnchor, includeEmptyLines) -> Range\n- screenCursor (Cursor): The cursor to use\n- screenAnchor (Anchor): The anchor to use\n- includeEmptyLines (Boolean): If true, this includes ranges inside the block which are empty due to clipping\n", - "line": 13909, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "screenCursor", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "screenAnchor", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "includeEmptyLines", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "rectangularRangeBlock", - "name_prefix": ".", - "path": ".rectangularRangeBlock", - "outFile": "multi_select.html#.rectangularRangeBlock" - }, - { - "id": ".removeSelectionMarker", - "type": "class method", - "description": "Editor.removeSelectionMarker(range)\n- range (Range): The selection range added with [[Editor.addSelectionMarker `addSelectionMarker()`]].\n\nRemoves the selection marker.", - "short_description": "Editor.removeSelectionMarker(range)\n- range (Range): The selection range added with [[Editor.addSelectionMarker `addSelectionMarker()`]].\n", - "line": 14015, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "range", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "removeSelectionMarker", - "name_prefix": ".", - "path": ".removeSelectionMarker", - "outFile": "multi_select.html#.removeSelectionMarker" - }, - { - "id": ".selectMore", - "type": "class method", - "description": "extension\nEditor.selectMore(dir, skip)\n- dir (Number): The direction of lines to select: -1 for up, 1 for down\n- skip (Boolean): If `true`, removes the active selection range\n\nFinds the next occurence of text in an active selection and adds it to the selections.", - "short_description": "extension\nEditor.selectMore(dir, skip)\n- dir (Number): The direction of lines to select: -1 for up, 1 for down\n- skip (Boolean): If `true`, removes the active selection range\n", - "line": 14311, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dir", - "description": "", - "types": [ - "Object" - ], - "optional": false - }, - { - "name": "skip", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "selectMore", - "name_prefix": ".", - "path": ".selectMore", - "outFile": "multi_select.html#.selectMore" - }, - { - "id": ".substractPoint", - "type": "class method", - "description": "extension\nSelection.substractPoint(pos) -> Range\n- pos (Range): The position to remove, as a `{row, column}` object\n\nRemoves a Range containing pos (if it exists).", - "short_description": "extension\nSelection.substractPoint(pos) -> Range\n- pos (Range): The position to remove, as a `{row, column}` object\n", - "line": 13778, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "pos", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "substractPoint", - "name_prefix": ".", - "path": ".substractPoint", - "outFile": "multi_select.html#.substractPoint" - }, - { - "id": ".transposeSelections", - "type": "class method", - "description": "extension\nEditor.transposeSelections(dir)\n- dir (Number): The direction to rotate selections\n\nTransposes the selected ranges.", - "short_description": "extension\nEditor.transposeSelections(dir)\n- dir (Number): The direction to rotate selections\n", - "line": 14268, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [ - { - "name": "dir", - "description": "", - "types": [ - "Object" - ], - "optional": false - } - ] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "transposeSelections", - "name_prefix": ".", - "path": ".transposeSelections", - "outFile": "multi_select.html#.transposeSelections" - }, - { - "id": ".updateSelectionMarkers", - "type": "class method", - "description": "Editor.updateSelectionMarkers()\n\nUpdates the cursor and marker layers.", - "short_description": "Editor.updateSelectionMarkers()\n", - "line": 13987, - "author": [], - "signatures": [ - { - "arguments": { - "arguments": [] - } - } - ], - "aliases": [], - "children": [], - "file": "/Users/gjtorikian/Developer/ace/lib/ace/multi_select.js", - "name": "updateSelectionMarkers", - "name_prefix": ".", - "path": ".updateSelectionMarkers", - "outFile": "multi_select.html#.updateSelectionMarkers" - } - ] - } -} \ No newline at end of file diff --git a/doc/build.js b/doc/build.js index 97365b1a..2c596dea 100644 --- a/doc/build.js +++ b/doc/build.js @@ -2,7 +2,7 @@ var fs = require("fs"); var path = require("path"); var panino = require("panino"); var srcPath = __dirname + "/../lib/ace"; -var buildType = process.argv.splice(2)[0];buildType +var buildType = process.argv.splice(2)[0]; var options = { title : "Ace API", @@ -35,8 +35,7 @@ var options = { assets : "./resources/ace/skeleton", additionalObjs : "./additionalObjs.json", exclude : ["**/*_test.js", "**/mode/**", "default_commands.js", "multi_select_commands.js", "**/test/**", "**/theme/**", "**/worker/**"], - index : "./index.md", - disableTests: true + index : "./index.md" }; files = [srcPath]; diff --git a/doc/resources/ace/skeleton/javascripts/ux.js b/doc/resources/ace/skeleton/javascripts/ux.js index 4a2ffdbd..724c5e31 100644 --- a/doc/resources/ace/skeleton/javascripts/ux.js +++ b/doc/resources/ace/skeleton/javascripts/ux.js @@ -22,7 +22,7 @@ $(function () { if (query) { input.value = ""; input.blur(); - var url = "https://www.google.com/search?q=" + encodeURIComponent("site:ace.ajax.org/api" + " " + query); + var url = "https://www.google.com/search?q=" + encodeURIComponent("site:ace.ajax.org" + " " + query); window.open(url); } return false; diff --git a/doc/resources/ace/templates/ace_menu.jade b/doc/resources/ace/templates/ace_menu.jade deleted file mode 100644 index 7bf9599a..00000000 --- a/doc/resources/ace/templates/ace_menu.jade +++ /dev/null @@ -1,59 +0,0 @@ -div#well - form(id='searchbox', action='', class='navbar-search') - input(class='search-query span3', name='query', type='text', placeholder="Search the API", title="Search across all the documentation") - - ul.menu - li - div.menu-item - a(class="menuLink namespace", href="ace.html#nav=api") Ace - li - div.menu-item - a(class="menuLink namespace", href="anchor.html#nav=api") Anchor - li - div.menu-item - a(class="menuLink namespace", href="background_tokenizer.html#nav=api") BackgroundTokenizer - li - div.menu-item - a(class="menuLink namespace", href="document.html#nav=api") Document - li - div.menu-item - a(class="menuLink namespace", href="edit_session.html#nav=api") EditSession - li - div.menu-item - a(class="menuLink namespace", href="editor.html#nav=api") Editor - - //- probably not needing doc a(class="menuLink namespace", href="multi_select.html#nav=api") MultiSelect - - //- not actually doc'ed yet a(class="menuLink namespace", href="placeholder.html#nav=api") PlaceHolder - - li - div.menu-item - a(class="menuLink namespace", href="range.html#nav=api") Range - - //- not actually doc'ed yet a(class="menuLink namespace", href="renderloop.html#nav=api") RenderLoop - - - li - div.menu-item - a(class="menuLink namespace", href="scrollbar.html#nav=api") Scrollbar - li - div.menu-item - a(class="menuLink namespace", href="search.html#nav=api") Search - li - div.menu-item - a(class="menuLink namespace", href="selection.html#nav=api") Selection - - //- not actually doc'ed yet a(class="menuLink namespace", href="split.html#nav=api") Split - - li - div.menu-item - a(class="menuLink namespace", href="token_iterator.html#nav=api") TokenIterator - li - div.menu-item - a(class="menuLink namespace", href="tokenizer.html#nav=api") Tokenizer - li - div.menu-item - a(class="menuLink namespace", href="undomanager.html#nav=api") UndoManager - li - div.menu-item - a(class="menuLink namespace", href="virtual_renderer.html#nav=api") VirtualRenderer \ No newline at end of file diff --git a/doc/resources/ace/templates/layout.jade b/doc/resources/ace/templates/layout.jade index 68864969..0af68049 100644 --- a/doc/resources/ace/templates/layout.jade +++ b/doc/resources/ace/templates/layout.jade @@ -1,4 +1,4 @@ -include ../../common_layout +include common_layout include lib #documentation.span8 diff --git a/doc/resources/ace/templates/lib.jade b/doc/resources/ace/templates/lib.jade index c59bb5a0..1eb3cc87 100644 --- a/doc/resources/ace/templates/lib.jade +++ b/doc/resources/ace/templates/lib.jade @@ -12,149 +12,110 @@ mixin article(obj, parents) if typeof obj === 'string' obj = list[obj] - title = obj.path + (obj.type ? ' (' + obj.type + ')' : '') - article.article(id=obj.path, data-title=title) - if obj.type === 'section' || obj.type === 'namespace' || obj.type === 'class' || obj.type === 'mixin' + if (obj.private !== true && obj.name.charAt(0) !== "$") + title = obj.path + (obj.type ? ' (' + obj.type + ')' : '') + article.article(id=obj.path, data-title=title) + if obj.type === 'section' || obj.type === 'namespace' || obj.type === 'class' || obj.type === 'mixin' - if obj.stability - mixin markdown(">" + obj.stability) + if obj.stability + mixin markdown(">" + obj.stability) - if obj.description - .section.description - .memberContent - mixin markdown(obj.description) - - collection = obj.children.filter(function(x){return x.type === 'namespace'}); - if collection.length - .section.namespaces - // - h3 Namespaces + if obj.description + .section.description .memberContent - mixin short_description_list(collection) - - collection = obj.children.filter(function(x){return x.type === 'mixin'}); - if collection.length - .section.mixins - // - h3 Mixins - .memberContent - mixin short_description_list(collection) - - if obj.type === 'class' - - if obj.superclass - .section.superclass - // h3 - Superclass - .memberContent - mixin link(obj.superclass) - - if obj.subclasses.length - .section.subclasses - // h3 - Subclasses - .memberContent - mixin links(obj.subclasses) - - if obj.included_mixins - .section.mixins - // h3 - Includes - .memberContent - mixin links(obj.included_mixins) - - collection = obj.children.filter(function(x){return x.type === 'utility'}) - if collection.length - .section.utilities - // h3 - Utilities - .memberContent - mixin links(collection) - - else - - .section.method - .memberContent - if obj.signatures - div.title - i(id='#{obj.path}', class='methodToggle methodClicker inactive icon-caret-right') - ul.signatures - -var loops = 0; - for sig in obj.signatures - li.signature - ul - li.signature-call!= signature(obj, sig, ["methodClicker"]) - if sig.returns - li.signature-returns - ul.argument-types - for ret in sig.returns - li.argument-type!= returnLink(obj, ret, []) - -if (loops == 0) - -loops = 1 // ensure that we only print ONE meta info UL per signature (some methods have multiple signatures) - ul.metaInfo - if obj.readonly - li - span.label.read-only Read-Only - if obj.chainable - li - span.label.chainable Chainable - if obj.internal - li - span.label.internal Internal - if obj.deprecated - li - span.label.deprecated - | Deprecated - if obj.deprecated.from - |   (since #{obj.deprecated.from}) - if obj.deprecated.off - |  and will be removed on #{obj.deprecated.off} - if obj.alias_of - li - span.label.alias.single - | Aliased as: - != link(obj.alias_of) - else if obj.aliases.length - li - span.label.alias.multiple - | Aliased as:  - for alias in obj.aliases - mixin link(alias)  - - if obj.related_to - li - span.label.related-to - | Related to: - obj.related_to - - div.sideToggler - - div(id='ellipsis_#{obj.path}', class='ellipsis_description') - mixin markdown(obj.short_description) - - - div.description - mixin markdown(obj.description) + + else + .section.method + .memberContent + if obj.signatures + div.title + i(id='#{obj.path}', class='methodToggle methodClicker inactive icon-caret-right') + ul.signatures + -var loops = 0; + for sig in obj.signatures + li.signature + ul + li.signature-call!= signature(obj, sig, ["methodClicker"]) + if sig.returns + li.signature-returns + ul.argument-types + for ret in sig.returns + li.argument-type!= returnLink(obj, ret, []) + -if (loops == 0) + -loops = 1 // ensure that we only print ONE meta info UL per signature (some methods have multiple signatures) + ul.metaInfo + if obj.incomplete + li + span.label.incomplete Incomplete + if obj.experimental + li + span.label.experimental Experimental + if obj.readonly + li + span.label.read-only Read-Only + if obj.chainable + li + span.label.chainable Chainable + if obj.internal + li + span.label.internal Internal + if obj.deprecated + li + span.label.deprecated + | Deprecated + if obj.deprecated.from + |   (since #{obj.deprecated.from}) + if obj.deprecated.off + |  and will be removed on #{obj.deprecated.off} + if obj.alias_of + li + span.label.alias.single + | Aliased as: + != link(obj.alias_of) + else if obj.aliases.length + li + span.label.alias.multiple + | Aliased as: + ul.alias + for alias in obj.aliases + li + mixin link(alias) - if obj.bound && ~obj.bound.indexOf('#') - p.note.methodized - | This method can be called either as an - != link(obj.bound, ['link-short'], 'instance method') - | or as a generic method. If calling as generic, pass the instance in as the first argument. - else if obj.bound && !~obj.bound.indexOf('#') - p.note.functionalized - | This method can be called either as an instance method or as a - != link(obj.bound, ['link-short'], 'generic method') - |. If calling as generic, pass the instance in as the first argument. + if obj.related_to + li + span.label.related-to + | Related to + mixin link(obj.related_to, ["relatedToLink"]) + + div.sideToggler - if obj.arguments - h4 Arguments - != argumentTable(obj.arguments, ["argument-list", "table", "table-striped", "table-bordered"]) + div(id='ellipsis_#{obj.path}', class='ellipsis_description') + mixin markdown(obj.short_description) - if obj.returns - h4 Returns - != returnTable(obj.returns, ["return-list", "table", "table-striped", "table-bordered"]) + + div.description + + mixin markdown(obj.description) + + if obj.bound && ~obj.bound.indexOf('#') + p.note.methodized + | This method can be called either as an + != link(obj.bound, ['link-short'], 'instance method') + | or as a generic method. If calling as generic, pass the instance in as the first argument. + else if obj.bound && !~obj.bound.indexOf('#') + p.note.functionalized + | This method can be called either as an instance method or as a + != link(obj.bound, ['link-short'], 'generic method') + |. If calling as generic, pass the instance in as the first argument. + + if obj.arguments + h4 Arguments + != argumentTable(obj.arguments, ["argument-list", "table", "table-striped", "table-bordered"]) + + if obj.returns + h4 Returns + != returnTable(obj.returns, ["return-list", "table", "table-striped", "table-bordered"]) //- children for child in obj.children.filter(function(x){return x.type === 'section'}) diff --git a/doc/resources/common_layout.jade b/doc/resources/common_layout.jade deleted file mode 100644 index 817e3c73..00000000 --- a/doc/resources/common_layout.jade +++ /dev/null @@ -1,57 +0,0 @@ --var dirPrefix = "./"; --var sitePrefix = "../doc/site/"; --var landingPage = 'false' --var versions = [] - -mixin doctype - !!! 5 - - - - - - -mixin head - meta(http-equiv='Content-Type', content='text/html; charset=UTF-8') - - -if (isIndex) - title #{title} - -else - title #{classId} - #{title} - - meta(name="generator", content="panino-doc-build") - meta(name="description", content="Ace API documentation for the online code editor") - meta(name="author", content="Garen J. Torikian") - - script(src="#{dirPrefix}resources/javascripts/jquery.js") - script(src='#{sitePrefix}/js/main.js') - link(rel='stylesheet', media='all and (max-device-width: 480px)', href='doc/site/iphone.css') - link(rel='stylesheet', media='all and (min-device-width: 481px) and (max-device-width: 1024px)', href='doc/site/iphone.css') - link(href='#{dirPrefix}resources/ace/skeleton/images/favicon.ico', rel='icon', type='image/x-icon') - - link(rel="stylesheet", href="#{dirPrefix}resources/csses/bootstrap.min.css") - link(href='#{sitePrefix}/style.css', rel='stylesheet', type='text/css') - link(rel="stylesheet", href="#{dirPrefix}resources/csses/ace_api.css") - link(rel="stylesheet", href="#{dirPrefix}resources/csses/font-awesome.css") - - link(href="#{dirPrefix}resources/images/favicon.ico", rel="icon", type="image/x-icon") - - script(src='#{dirPrefix}resources/javascripts/bbq.js') - script(src="#{dirPrefix}resources/javascripts/jquery.collapse.js") - script(src="#{dirPrefix}resources/javascripts/jquery.cookie.js") - script(src="#{dirPrefix}resources/javascripts/bootstrap.js") - - -mixin endingScripts - script(defer, src="#{dirPrefix}resources/javascripts/ux.js") - script(src="#{dirPrefix}resources/javascripts/clicker.js") - script(src="#{dirPrefix}resources/javascripts/jquery-scrollspy.js") - script(defer, src="#{dirPrefix}resources/javascripts/disqus-ext.js") - script(defer, src="#{dirPrefix}resources/javascripts/ga.js") - -mixin identifyBuild(tree, type) - landingPage = 'true' - -dirPrefix = './' - -mixin markdown(text, inline) - != markdown(text, inline) \ No newline at end of file diff --git a/lib/ace/edit_session.js b/lib/ace/edit_session.js index 0484f773..bfa85335 100644 --- a/lib/ace/edit_session.js +++ b/lib/ace/edit_session.js @@ -467,7 +467,7 @@ var EditSession = function(text, mode) { /** * Returns `true` if soft tabs are being used, `false` otherwise. - * @returns Boolean + * @returns {Boolean} **/ this.getUseSoftTabs = function() { return this.$useSoftTabs; @@ -573,7 +573,7 @@ var EditSession = function(text, mode) { /** * Sets a breakpoint on every row number given by `rows`. This function also emites the `'changeBreakpoint'` event. - * @param {[Number]} rows An array of row indicies + * @param {Number} rows An array of row indicies * * * @@ -732,7 +732,7 @@ var EditSession = function(text, mode) { var id = this.addMarker(range, clazz, "fullLine", inFront); range.id = id; return range; - }, + }; /* * Error: @@ -1593,7 +1593,7 @@ var EditSession = function(text, mode) { /** * Returns `true` if wrap mode is being used; `false` otherwise. - * @returns Boolean + * @returns {Boolean} **/ this.getUseWrapMode = function() { return this.$useWrapMode; diff --git a/lib/ace/editor.js b/lib/ace/editor.js index 19a89dc4..f874edd6 100644 --- a/lib/ace/editor.js +++ b/lib/ace/editor.js @@ -52,7 +52,7 @@ var defaultCommands = require("./commands/default_commands").commands; * * The main entry point into the Ace functionality. * - * The `Editor` manages the `[[EditSession]]` (which manages `[[Document]]`s), as well as the `[[VirtualRenderer]]`, which draws everything to the screen. + * The `Editor` manages the [[EditSession]] (which manages [[Document]]s), as well as the [[VirtualRenderer]], which draws everything to the screen. * * Event sessions dealing with the mouse and keyboard are bubbled up from `Document` to the `Editor`, which decides what to do with them. * @class Editor @@ -1022,7 +1022,6 @@ var Editor = function(renderer, session) { * @param {Boolean} enabled Enables or disables behaviors * * - * Specifies whether to use behaviors or not. ["Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.]{: #BehaviorsDef} **/ this.setBehavioursEnabled = function (enabled) { this.$modeBehaviours = enabled; @@ -1312,8 +1311,8 @@ var Editor = function(renderer, session) { }; /** - * Works like [[Editor.getTokenAt]], except it returns a number. - * @returns Number + * Works like [[EditSession.getTokenAt]], except it returns a number. + * @returns {Number} **/ this.getNumberAt = function( row, column ) { var _numberRx = /[\-]?[0-9]+(?:\.[0-9]+)?/g @@ -1337,7 +1336,7 @@ var Editor = function(renderer, session) { /** * Editor.modifyNumber(amount) - * @param [Number] amount The value to change the numeral by (can be negative to decrease value) + * @param {Number} amount The value to change the numeral by (can be negative to decrease value) * * If the character before the cursor is a number, this functions changes its value by `amount`. **/ From 2a716dc668f7ed27ef1dffffc332519b0eb24184 Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Mon, 26 Nov 2012 17:44:54 -0800 Subject: [PATCH 4/5] Rebuild API --- api/ace.html | 85 + api/anchor.html | 279 ++ api/background_tokenizer.html | 335 ++ api/command_manager.html | 55 + api/document.html | 865 ++++ api/edit_session.html | 3165 +++++++++++++ api/editor.html | 4073 +++++++++++++++++ api/index.html | 12 + api/placeholder.html | 313 ++ api/range.html | 964 ++++ api/renderloop.html | 55 + api/resources/csses/ace_api.css | 993 ++++ api/resources/csses/bootstrap.min.css | 689 +++ api/resources/csses/font-awesome.css | 303 ++ api/resources/font/fontawesome-webfont.eot | Bin 0 -> 38708 bytes api/resources/font/fontawesome-webfont.svg | 255 ++ api/resources/font/fontawesome-webfont.ttf | Bin 0 -> 68476 bytes api/resources/font/fontawesome-webfont.woff | Bin 0 -> 41752 bytes api/resources/images/Ace_ERD.svg | 4 + api/resources/images/ace_logo.png | Bin 0 -> 42538 bytes api/resources/images/ace_logo_menu.png | Bin 0 -> 3252 bytes api/resources/images/c9-log-footer.png | Bin 0 -> 6859 bytes api/resources/images/c9-sponsor.png | Bin 0 -> 12244 bytes api/resources/images/cloud9-logo.png | Bin 0 -> 14564 bytes api/resources/images/content-top.png | Bin 0 -> 3172 bytes api/resources/images/content_bg.png | Bin 0 -> 4177 bytes api/resources/images/content_top_bg.png | Bin 0 -> 629 bytes api/resources/images/dashed_back.png | Bin 0 -> 3445 bytes api/resources/images/favicon.ico | Bin 0 -> 1150 bytes api/resources/images/footer-bg.png | Bin 0 -> 1090 bytes api/resources/images/main_bg.png | Bin 0 -> 9630 bytes api/resources/images/member-sprites.png | Bin 0 -> 3505 bytes api/resources/images/menu_disc.png | Bin 0 -> 556 bytes api/resources/images/method_bg.png | Bin 0 -> 8001 bytes .../images/scrolled-heading-shadow.png | Bin 0 -> 3903 bytes api/resources/images/sidebar-top-bg.png | Bin 0 -> 2693 bytes api/resources/images/sidebar_border.png | Bin 0 -> 2967 bytes api/resources/images/swirl_divider.png | Bin 0 -> 1043 bytes api/resources/javascripts/bbq.js | 18 + api/resources/javascripts/bootstrap.js | 389 ++ api/resources/javascripts/clicker.js | 69 + api/resources/javascripts/disqus-ext.js | 17 + api/resources/javascripts/ga.js | 9 + api/resources/javascripts/jquery-scrollspy.js | 98 + api/resources/javascripts/jquery.collapse.js | 151 + api/resources/javascripts/jquery.cookie.js | 96 + api/resources/javascripts/jquery.js | 4 + api/resources/javascripts/plugins.js | 13 + .../javascripts/prettify-extension.js | 24 + api/resources/javascripts/prettify.js | 28 + api/resources/javascripts/ux.js | 185 + api/scrollbar.html | 264 ++ api/search.html | 294 ++ api/selection.html | 1495 ++++++ api/split.html | 560 +++ api/token_iterator.html | 262 ++ api/tokenizer.html | 136 + api/undomanager.html | 289 ++ api/virtual_renderer.html | 2030 ++++++++ 59 files changed, 18876 insertions(+) create mode 100644 api/ace.html create mode 100644 api/anchor.html create mode 100644 api/background_tokenizer.html create mode 100644 api/command_manager.html create mode 100644 api/document.html create mode 100644 api/edit_session.html create mode 100644 api/editor.html create mode 100644 api/index.html create mode 100644 api/placeholder.html create mode 100644 api/range.html create mode 100644 api/renderloop.html create mode 100644 api/resources/csses/ace_api.css create mode 100644 api/resources/csses/bootstrap.min.css create mode 100644 api/resources/csses/font-awesome.css create mode 100644 api/resources/font/fontawesome-webfont.eot create mode 100644 api/resources/font/fontawesome-webfont.svg create mode 100644 api/resources/font/fontawesome-webfont.ttf create mode 100644 api/resources/font/fontawesome-webfont.woff create mode 100644 api/resources/images/Ace_ERD.svg create mode 100644 api/resources/images/ace_logo.png create mode 100644 api/resources/images/ace_logo_menu.png create mode 100644 api/resources/images/c9-log-footer.png create mode 100644 api/resources/images/c9-sponsor.png create mode 100644 api/resources/images/cloud9-logo.png create mode 100644 api/resources/images/content-top.png create mode 100644 api/resources/images/content_bg.png create mode 100644 api/resources/images/content_top_bg.png create mode 100644 api/resources/images/dashed_back.png create mode 100644 api/resources/images/favicon.ico create mode 100644 api/resources/images/footer-bg.png create mode 100644 api/resources/images/main_bg.png create mode 100644 api/resources/images/member-sprites.png create mode 100644 api/resources/images/menu_disc.png create mode 100644 api/resources/images/method_bg.png create mode 100644 api/resources/images/scrolled-heading-shadow.png create mode 100644 api/resources/images/sidebar-top-bg.png create mode 100644 api/resources/images/sidebar_border.png create mode 100644 api/resources/images/swirl_divider.png create mode 100644 api/resources/javascripts/bbq.js create mode 100644 api/resources/javascripts/bootstrap.js create mode 100644 api/resources/javascripts/clicker.js create mode 100644 api/resources/javascripts/disqus-ext.js create mode 100644 api/resources/javascripts/ga.js create mode 100644 api/resources/javascripts/jquery-scrollspy.js create mode 100644 api/resources/javascripts/jquery.collapse.js create mode 100644 api/resources/javascripts/jquery.cookie.js create mode 100644 api/resources/javascripts/jquery.js create mode 100644 api/resources/javascripts/plugins.js create mode 100644 api/resources/javascripts/prettify-extension.js create mode 100644 api/resources/javascripts/prettify.js create mode 100644 api/resources/javascripts/ux.js create mode 100644 api/scrollbar.html create mode 100644 api/search.html create mode 100644 api/selection.html create mode 100644 api/split.html create mode 100644 api/token_iterator.html create mode 100644 api/tokenizer.html create mode 100644 api/undomanager.html create mode 100644 api/virtual_renderer.html diff --git a/api/ace.html b/api/ace.html new file mode 100644 index 00000000..c9a86d36 --- /dev/null +++ b/api/ace.html @@ -0,0 +1,85 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ace [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The main class required to set up an Ace instance in the browser.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Embeds the Ace editor into the DOM, at the element provided by el.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Embeds the Ace editor into the DOM, at the element provided by el.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              elString | DOMElement

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Either the id of an element, or the element itself

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/anchor.html b/api/anchor.html new file mode 100644 index 00000000..7337f23d --- /dev/null +++ b/api/anchor.html @@ -0,0 +1,279 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Anchor [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Defines the floating pointer in the document. Whenever text is inserted or deleted before the cursor, the position of the cursor is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Anchor and associates it with a document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Anchor and associates it with a document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docDocument

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The document to associate with the anchor

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row position

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting column position

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Anchor.on("change", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the anchor position changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the anchor position changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Both of these objects have a row and column property corresponding to the position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events that can trigger this function include setPosition().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing information about the anchor position. It has two properties:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • old: An object describing the old Anchor position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • value: An object describing the new Anchor position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Anchor.detach
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              When called, the 'change' event listener is removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              When called, the 'change' event listener is removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Anchor.getDocument +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Anchor.getPosition +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object identifying the row and column position of the current anchor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object identifying the row and column position of the current anchor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the anchor position to the specified row and column. If noClip is true, the position is not clipped.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the anchor position to the specified row and column. If noClip is true, the position is not clipped.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row index to move the anchor to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column index to move the anchor to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              noClipBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Identifies if you want the position to be clipped

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/background_tokenizer.html b/api/background_tokenizer.html new file mode 100644 index 00000000..d49263aa --- /dev/null +++ b/api/background_tokenizer.html @@ -0,0 +1,335 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              BackgroundTokenizer [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizes the current Document in the background, and caches the tokenized rows for future use.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If a certain row is changed, everything below that row is re-tokenized.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new BackgroundTokenizer object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new BackgroundTokenizer object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokenizerTokenizer

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The tokenizer to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              editorEditor

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The editor to associate with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.on("update", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the background tokeniziers between a range of rows are going to be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the background tokeniziers between a range of rows are going to be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing two properties, first and last, which indicate the rows of the region being updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.fireUpdateEvent(Number firstRow, Number lastRow)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emits the 'update' event. firstRow and lastRow are used to define the boundaries of the region to be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emits the 'update' event. firstRow and lastRow are used to define the boundaries of the region to be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row region

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row region

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.getState(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the state of tokenization at the end of a row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the state of tokenization at the end of a row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to get state at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.getTokens(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gives list of tokens of the row. (tokens are cached)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gives list of tokens of the row. (tokens are cached)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to get tokens at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.setDocument(Document doc)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new document to associate with this object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new document to associate with this object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docDocument

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new document to associate with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.setTokenizer(Tokenizer tokenizer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new tokenizer for this object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new tokenizer for this object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokenizerTokenizer

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new tokenizer to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.start(Number startRow)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Starts tokenizing at the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Starts tokenizing at the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              startRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to start at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • BackgroundTokenizer.stop
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stops tokenizing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stops tokenizing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/command_manager.html b/api/command_manager.html new file mode 100644 index 00000000..24afeae8 --- /dev/null +++ b/api/command_manager.html @@ -0,0 +1,55 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              CommandManager [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              new CommandManager(platform, commands)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/document.html b/api/document.html new file mode 100644 index 00000000..8f7bb93c --- /dev/null +++ b/api/document.html @@ -0,0 +1,865 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Document [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Contains the text of the document. Document can be attached to several EditSessions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              At its core, Documents are just an array of strings, with each row in the document matching up to the array index.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Document. If text is included, the Document contains those strings; otherwise, it's empty.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Document. If text is included, the Document contains those strings; otherwise, it's empty.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString | Array

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.on("change", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the document changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fires whenever the document changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Several methods trigger different "change" events. Below is a list of each action type, followed by each property that's also available:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Contains at least one property called "action". "action" indicates the action that triggered the change. Each action also has a set of additional properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.applyDeltas(Object deltas)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Applies all the changes previously accumulated. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Applies all the changes previously accumulated. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltasObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Anchor to define a floating point in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Anchor to define a floating point in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column number to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getAllLines
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns all lines in the document as string array. Warning: The caller should not modify this array!

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns all lines in the document as string array. Warning: The caller should not modify this array!

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getLength
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of rows in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of rows in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getLine(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a verbatim copy of the given line as it is in the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a verbatim copy of the given line as it is in the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row index to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The first row index to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row index to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getNewLineCharacter +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the newline character that's being used, depending on the value of newLineMode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the newline character that's being used, depending on the value of newLineMode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getNewLineMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the type of newlines being used; either windows, unix, or auto

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the type of newlines being used; either windows, unix, or auto

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getTextRange(Range range)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a range within the document, this function returns all the text within that range as a single string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a range within the document, this function returns all the text within that range as a single string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The range to work with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.getValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns all the lines in the document as a single string, split by the new line character.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns all the lines in the document as a single string, split by the new line character.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a block of text and the indicated position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a block of text and the indicated position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to start inserting at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A chunk of text to insert

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts text into the position at the current row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts text into the position at the current row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to insert at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A chunk of text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts the elements in lines into the document, starting at the row index given by row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts the elements in lines into the document, starting at the row index given by row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The index of the row to insert at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              linesArray

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An array of strings

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.insertNewLine(String position) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a new line into the document at the current row's position. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a new line into the document at the current row's position. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to insert at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.isNewLine(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if text is a newline character (either \r\n, \r, or \n).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if text is a newline character (either \r\n, \r, or \n).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the range from the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the range from the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A specified Range to remove

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the specified columns from the row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the specified columns from the row. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to remove from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              startColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to start removing at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              endColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to stop removing at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes a range of full lines. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes a range of full lines. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The first row to be removed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The last row to be removed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.removeNewLine(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the new line between row and the row immediately following it. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the new line between row and the row immediately following it. This method also triggers the 'change' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces a range in the document with the new text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces a range in the document with the new text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A specified Range to replace

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new text to use as a replacement

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.revertDeltas(Object deltas)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reverts any changes previously applied. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reverts any changes previously applied. These can be either 'includeText', 'insertLines', 'removeText', and 'removeLines'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltasObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.setNewLineMode(String newLineMode)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              newLineModeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The newline mode to use; can be either windows, unix, or auto

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Document.setValue(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces all the lines in the current Document with the value of text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces all the lines in the current Document with the value of text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/edit_session.html b/api/edit_session.html new file mode 100644 index 00000000..82d22eea --- /dev/null +++ b/api/edit_session.html @@ -0,0 +1,3165 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              EditSession [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stores all the data about Editor state providing easy way to change editors state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              EditSession can be attached to only one Document. Same Document can be attached to several EditSessions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets up a new EditSession and associates it with the given Document and TextMode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets up a new EditSession and associates it with the given Document and TextMode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textDocument | String

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If text is a Document, it associates the EditSession with it. Otherwise, a new Document is created, with the initial text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              modeTextMode

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The inital language mode to use for the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("change", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the document changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the document changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing a delta of information about the change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeBackMarker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a back marker changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a back marker changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeBreakpoint
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the gutter changes, either by setting or removing breakpoints, or when the gutter decorations change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeFold
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a code fold is added or removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a code fold is added or removed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeFrontMarker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a front marker changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a front marker changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the current mode changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the current mode changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeOverwrite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the ability to overwrite text changes, via EditSession.setOverwrite().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the ability to overwrite text changes, via EditSession.setOverwrite().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeScrollLeft", function(Number scrollLeft))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll left changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll left changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollLeftNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new scroll left value

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeScrollTop", function(Number scrollTop))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll top changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll top changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollTopNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new scroll top value

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeWrapLimit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the wrapping limit changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the wrapping limit changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("changeWrapMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the wrap mode changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the wrap mode changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("loadMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the mode is loaded.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the mode is loaded.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.on("tokenizerUpdate", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a background tokenizer asynchronously processes new rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when a background tokenizer asynchronously processes new rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing one property, "data", that contains information about the changing rows

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.addDynamicMarker(Object marker, Boolean inFront)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a dynamic marker to the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a dynamic marker to the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              markerObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. object with update method

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              inFrontBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to establish a front marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.addGutterDecoration(Number row, String className)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds className to the row, to be used for CSS stylings and whatnot.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds className to the row, to be used for CSS stylings and whatnot.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              classNameString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The class to add

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a new marker to the given Range. If inFront is true, a front marker is defined, and the 'changeFrontMarker' event fires; otherwise, the 'changeBackMarker' event fires.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a new marker to the given Range. If inFront is true, a front marker is defined, and the 'changeFrontMarker' event fires; otherwise, the 'changeBackMarker' event fires.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Define the range of the marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              clazzString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set the CSS class for the marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              typeFunction | String

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Identify the type of the marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              inFrontBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to establish a front marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.clearAnnotations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Clears all the annotations for this session. This function also triggers the 'changeAnnotation' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Clears all the annotations for this session. This function also triggers the 'changeAnnotation' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.clearBreakpoint(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row index

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.clearBreakpoints
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all breakpoints on the rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all breakpoints on the rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.documentToScreenColumn(Number row, Number docColumn)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, returns the screen column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, returns the screen column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              docColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.documentToScreenPosition(Number docRow, Number docColumn) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts document coordinates to screen coordinates. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts document coordinates to screen coordinates. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The document row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              docColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The document column to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.documentToScreenRow(Number docRow, Number docColumn)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, returns the screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, returns the screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              docColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Duplicates all the text between firstRow and lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Duplicates all the text between firstRow and lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row to duplicate

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row to duplicate

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getAnnotations +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the annotations for the EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the annotations for the EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the range of a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the range of a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number to start from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column number to start from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getBreakpoints
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of numbers, indicating which rows have breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of numbers, indicating which rows have breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getDocument +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Document associated with this session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Document associated with this session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getDocumentLastRowColumn(Number docRow, Number docColumn)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, this returns the column position of the last screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, this returns the column position of the last screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              docColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getDocumentLastRowColumnPosition(Number docRow, Number docColumn)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, this returns the document position of the last row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given document row and column, this returns the document position of the last row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              docColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getLength +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of rows in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of rows in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a verbatim copy of the given line as it is in the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a verbatim copy of the given line as it is in the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to retrieve from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array of strings of the rows between firstRow and lastRow. This function is inclusive of lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The first row index to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row index to retrieve

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getMarkers(Boolean inFront) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array containing the IDs of all the markers, either front or back.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an array containing the IDs of all the markers, either front or back.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              inFrontBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, indicates you only want front markers; false indicates only back markers

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getMode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current text mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current text mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getNewLineMode
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getOverwrite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns number of screenrows in a wrapped line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns number of screenrows in a wrapped line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getRowSplitData(Object row) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given row, this returns the split data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              For the given row, this returns the split data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScreenLastRowColumn(Number screenRow)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the position (on screen) for the last character in the provided screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the position (on screen) for the last character in the provided screen row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              screenRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The screen row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScreenLength +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the length of the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the length of the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScreenTabSize(Number screenColumn) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The distance to the next tab stop at the specified screen column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The distance to the next tab stop at the specified screen column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              screenColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The screen column to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScreenWidth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the width of the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the width of the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScrollLeft +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getScrollTop +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getSelection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the string of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the string of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getState(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the state of tokenization at the end of a row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the state of tokenization at the end of a row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to start at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getTabSize
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current tab size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current tab size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getTabString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by getTabSize()); otherwise it's simply '\t'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current value for tabs. If the user is using soft tabs, this will be a series of spaces (defined by getTabSize()); otherwise it's simply '\t'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getTextRange(Range range) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a range within the document, this function returns all the text within that range as a single string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a range within the document, this function returns all the text within that range as a single string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The range to work with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object indicating the token at the current row. The object has two properties: index and start.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object indicating the token at the current row. The object has two properties: index and start.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number to retrieve from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column number to retrieve from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getTokens(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Starts tokenizing at the row indicated. Returns a list of objects of the tokenized rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to start at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getUndoManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current undo manager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current undo manager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getUseSoftTabs +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if soft tabs are being used, false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if soft tabs are being used, false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getUseWorker
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if workers are being used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if workers are being used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getUseWrapMode +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if wrap mode is being used; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if wrap mode is being used; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current Document as a string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current Document as a string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a starting row and column, this method returns the Range of the first word boundary it finds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given a starting row and column, this method returns the Range of the first word boundary it finds.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to start at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to start at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getWrapLimit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of wrap limit.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of wrap limit.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.getWrapLimitRange +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object that defines the minimum and maximum of the wrap limit; it looks something like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              { min: wrapLimitRange_min, max: wrapLimitRange_max }

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indents all the rows, from startRow to endRow (inclusive), by prefixing each row with the token in indentString.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indents all the rows, from startRow to endRow (inclusive), by prefixing each row with the token in indentString.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If indentString contains the '\t' character, it's replaced by whatever is defined by getTabString().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              startRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Starting row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              endRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Ending row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              indentStringString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The indent token

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a block of text and the indicated position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts a block of text and the indicated position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to start inserting at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A chunk of text to insert

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.isTabStop(Object position)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the character at the position is a soft tab.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the character at the position is a soft tab.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the lines in the document down one, starting from firstRow and ending at lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the lines in the document down one, starting from firstRow and ending at lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row to move down

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row to move down

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the lines in the document up one, starting from firstRow and ending at lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the lines in the document up one, starting from firstRow and ending at lastRow.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row to move up

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The final row to move up

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves a range of text from the given range to the given position. toPosition is an object that looks like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 { row: newRowLocation, column: newColumnLocation }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves a range of text from the given range to the given position. toPosition is an object that looks like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 { row: newRowLocation, column: newColumnLocation }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              fromRangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The range of text you want moved within the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              toPositionObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The location (row and column) where you want to move the text to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.onReloadTokenizer(Object e)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reloads all the tokens on the current session. This function calls BackgroundTokenizer.start () to all the rows; it also emits the 'tokenizerUpdate' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reloads all the tokens on the current session. This function calls BackgroundTokenizer.start () to all the rows; it also emits the 'tokenizerUpdate' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.outdentRows(Range range)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Outdents all the rows defined by the start and end properties of range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Outdents all the rows defined by the start and end properties of range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A range of rows

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Re-implements a previously undone change to your document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Re-implements a previously undone change to your document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltasArray

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An array of previous changes

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the range from the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the range from the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A specified Range to remove

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.removeGutterDecoration(Number row, String className)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes className from the row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes className from the row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              classNameString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The class to add

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.removeMarker(Number markerId)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the marker with the specified ID. If this marker was in front, the 'changeFrontMarker' event is emitted. If the marker was in the back, the 'changeBackMarker' event is emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the marker with the specified ID. If this marker was in front, the 'changeFrontMarker' event is emitted. If the marker was in the back, the 'changeBackMarker' event is emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              markerIdNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A number representing a marker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces a range in the document with the new text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces a range in the document with the new text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A specified Range to replace

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new text to use as a replacement

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.screenToDocumentPosition(Number screenRow, Number screenColumn) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts characters coordinates on the screen to characters coordinates within the document. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts characters coordinates on the screen to characters coordinates within the document. This takes into account code folding, word wrap, tab size, and any other visual modifications.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              screenRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The screen row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              screenColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The screen column to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setAnnotations(Array annotations)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets annotations for the EditSession. This functions emits the 'changeAnnotation' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets annotations for the EditSession. This functions emits the 'changeAnnotation' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              annotationsArray

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A list of annotations

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setBreakpoint(Number row, String className)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a breakpoint on the row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row index

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              classNameString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Class of the breakpoint

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setBreakpoints(Number rows)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a breakpoint on every row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a breakpoint on every row number given by rows. This function also emites the 'changeBreakpoint' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowsNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An array of row indicies

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setDocument(Document doc)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the EditSession to point to a new Document. If a BackgroundTokenizer exists, it also points to doc.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the EditSession to point to a new Document. If a BackgroundTokenizer exists, it also points to doc.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              docDocument

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new Document to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setNewLineMode(String newLineMode)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the new line mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              newLineModeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The newline mode to use; can be either windows, unix, or auto

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setOverwrite(Boolean overwrite)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass in true to enable overwrites in your session, or false to disable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass in true to enable overwrites in your session, or false to disable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              overwriteBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Defines wheter or not to set overwrites

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setScrollLeft(Object scrollLeft)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollLeftObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setScrollTop(Number scrollTop)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              This function sets the scroll top value. It also emits the 'changeScrollTop' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              This function sets the scroll top value. It also emits the 'changeScrollTop' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollTopNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new scroll top value

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setTabSize(Number tabSize)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set the number of spaces that define a soft tab; for example, passing in 4 transforms the soft tabs to be equivalent to four spaces. This function also emits the changeTabSize event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set the number of spaces that define a soft tab; for example, passing in 4 transforms the soft tabs to be equivalent to four spaces. This function also emits the changeTabSize event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              tabSizeNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new tab size

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setUndoManager(UndoManager undoManager)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the undo manager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the undo manager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              undoManagerUndoManager

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new undo manager

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setUndoSelect(Boolean enable)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enables or disables highlighting of the range where an undo occured.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enables or disables highlighting of the range where an undo occured.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              enableBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, selects the range of the reinserted change

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setUseSoftTabs(Boolean useSoftTabs)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass true to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character ('\t').

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass true to enable the use of soft tabs. Soft tabs means you're using spaces instead of the tab character ('\t').

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              useSoftTabsBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Value indicating whether or not to use soft tabs

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setUseWorker(Boolean useWorker)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies if you want to use a worker for the EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies if you want to use a worker for the EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              useWorkerBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to use a worker

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setUseWrapMode(Boolean useWrapMode)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets whether or not line wrapping is enabled. If useWrapMode is different than the current value, the 'changeWrapMode' event is emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets whether or not line wrapping is enabled. If useWrapMode is different than the current value, the 'changeWrapMode' event is emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              useWrapModeBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Enable (or disable) wrap mode

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.setValue(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the session text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the session text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new text to place

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the boundaries of wrap. Either value can be null to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for min or max are different, this method also emits the 'changeWrapMode' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the boundaries of wrap. Either value can be null to have an unconstrained wrap, or, they can be the same number to pin the limit. If the wrap limits for min or max are different, this method also emits the 'changeWrapMode' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              minNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The minimum wrap value (the left side wrap)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              maxNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The maximum wrap value (the right side wrap)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.toggleOverwrite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • EditSession.toString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current Document as a string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current Document as a string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reverts previous changes to your document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reverts previous changes to your document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltasArray

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An array of previous changes

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/editor.html b/api/editor.html new file mode 100644 index 00000000..17ba54d7 --- /dev/null +++ b/api/editor.html @@ -0,0 +1,4073 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The main entry point into the Ace functionality.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Editor manages the EditSession (which manages Documents), as well as the VirtualRenderer, which draws everything to the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Event sessions dealing with the mouse and keyboard are bubbled up from Document to the Editor, which decides what to do with them.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Editor object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Editor object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rendererVirtualRenderer

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Associated VirtualRenderer that draws everything

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The EditSession to refer to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("blur
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted once the editor has been blurred.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted once the editor has been blurred.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("change", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted whenever the document is changed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted whenever the document is changed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Contains a single property, data, which has the delta of changes

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("changeSelectionStyle", function(Object data))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the selection style changes, via Editor.setSelectionStyle().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the selection style changes, via Editor.setSelectionStyle().

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              dataObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Contains one property, data, which indicates the new selection style

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("changeSession", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted whenever the EditSession changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted whenever the EditSession changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object with two properties, oldSession and session, that represent the old and new EditSessions.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("copy", function(String text))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when text is copied.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when text is copied.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The copied text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("focus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted once the editor comes into focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted once the editor comes into focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.on("paste", function(String text))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when text is pasted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when text is pasted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The pasted text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.blockOutdent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Outdents the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Outdents the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.blur
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current textInput.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current textInput.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.centerSelection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attempts to center the current selection on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attempts to center the current selection on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.clearSelection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.copyLinesDown +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Copies all the selected lines down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Copies all the selected lines down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.copyLinesUp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Copies all the selected lines up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Copies all the selected lines up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.destroy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cleans up the entire editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cleans up the entire editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attempts to find needle within the document. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Attempts to find needle within the document. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              needleString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to search for (optional)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object defining various search properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animate scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Performs another search for needle in the document. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Performs another search for needle in the document. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. search options

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animate scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Performs a search for needle backwards. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Performs a search for needle backwards. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. search options

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animate scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.focus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Brings the current textInput into focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Brings the current textInput into focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getBehavioursEnabled +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the behaviors are currently enabled. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the behaviors are currently enabled. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getCopyText +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the string of text currently highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the string of text currently highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getCursorPosition +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getCursorPositionScreen +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the screen position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the screen position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getDragDelay +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current mouse drag delay.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current mouse drag delay.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getFirstVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getHighlightActiveLine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if current lines are always highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if current lines are always highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getHighlightSelectedWord +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if currently highlighted words are to be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if currently highlighted words are to be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getKeyboardHandler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the keyboard handler, such as "vim" or "windows".

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the keyboard handler, such as "vim" or "windows".

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getLastSearchOptions +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing all the search options. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing all the search options. For more information on options, see Search.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getLastVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getOverwrite +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if overwrites are enabled; false otherwise.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getPrintMarginColumn +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the column number of where the print margin is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the column number of where the print margin is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getReadOnly +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the editor is set to read-only mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the editor is set to read-only mode.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getScrollSpeed +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value indicating how fast the mouse scroll speed is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value indicating how fast the mouse scroll speed is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getSelection +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the currently highlighted selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the currently highlighted selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getSelectionRange +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getSelectionStyle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current selection style.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current selection style.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current session being used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current session being used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getShowFoldWidgets
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the fold widgets are shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the fold widgets are shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getShowInvisibles +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if invisible characters are being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if invisible characters are being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getShowPrintMargin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the print margin is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the print margin is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getTheme +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getValue +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current session's content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current session's content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.getWrapBehavioursEnabled
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.getWrapBehavioursEnabled() -> Boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.getWrapBehavioursEnabled() -> Boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the wrapping behaviors are currently enabled.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified line number, and also into the indiciated column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified line number, and also into the indiciated column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineNumberNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The line number to go to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column number to go to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animates scolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.gotoPageDown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the document to wherever "page down" is, as well as moving the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the document to wherever "page down" is, as well as moving the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.gotoPageUp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the document to wherever "page up" is, as well as moving the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the document to wherever "page up" is, as well as moving the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.indent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indents the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indents the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.insert(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts text into wherever the cursor is pointing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Inserts text into wherever the cursor is pointing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new text to add

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.isFocused
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the current textInput is in focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the current textInput is in focus.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates if the entire row is currently visible on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates if the entire row is currently visible on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates if the row is currently visible on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates if the row is currently visible on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to check

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.jumpToMatching(Object select)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor's row and column to the next matching bracket.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor's row and column to the next matching bracket.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              selectObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.modifyNumber(Number amount)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.modifyNumber(amount)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.modifyNumber(amount)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              amountNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The value to change the numeral by (can be negative to decrease value)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If the character before the cursor is a number, this functions changes its value by amount.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified row and column. Note that this does not de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified row and column. Note that this does not de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new row number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new column number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.moveCursorToPosition(Object pos)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the position indicated by pos.row and pos.column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the position indicated by pos.row and pos.column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              posObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object with two properties, row and column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.moveLinesDown +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the selected lines down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the selected lines down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.moveLinesUp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the selected lines up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts all the selected lines up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateDown(Number times)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor down in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              timesNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of times to change navigation

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateFileEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateFileStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the current file. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateLeft(Number times)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor left in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              timesNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of times to change navigation

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateLineEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateLineStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the current line. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateRight(Number times)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor right in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              timesNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of times to change navigation

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified row and column. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the specified row and column. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new row number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new column number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateUp(Number times)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor up in the document the specified number of times. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              timesNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of times to change navigation

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateWordLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word immediately to the left of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.navigateWordRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word immediately to the right of the current position. Note that this does de-select the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.onCopy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "copy" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "copy" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.onCursorChange
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the selection changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the selection changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.onCut
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "cut" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "cut" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.onPaste(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "paste" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Called whenever a text "paste" happens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The pasted text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.redo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.remove(String dir)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes words of text from the editor. A "word" is defined as a string of characters bookended by whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes words of text from the editor. A "word" is defined as a string of characters bookended by whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              dirString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The direction of the deletion to occur, either "left" or "right"

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.removeLines
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the lines in the current selection

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the lines in the current selection

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.removeToLineEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the words to the right of the current selection, until the end of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the words to the right of the current selection, until the end of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.removeToLineStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the words to the left of the current selection, until the start of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes all the words to the left of the current selection, until the start of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.removeWordLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the word directly to the left of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the word directly to the left of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.removeWordRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the word directly to the right of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the word directly to the right of the current selection.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces the first occurance of options.needle with the value in replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces the first occurance of options.needle with the value in replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to replace with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The Search options to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces all occurances of options.needle with the value in replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Replaces all occurances of options.needle with the value in replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to replace with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The Search options to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              forceBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, recomputes the size, even if the height and width haven't changed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.scrollPageDown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the document to wherever "page down" is, without changing the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the document to wherever "page down" is, without changing the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.scrollPageUp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the document to wherever "page up" is, without changing the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the document to wherever "page up" is, without changing the cursor position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls to a line. If center is true, it puts the line in middle of screen (or attempts to).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls to a line. If center is true, it puts the line in middle of screen (or attempts to).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The line to scroll to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              centerBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animates scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              callbackFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Function to be called when the animation has finished

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.scrollToRow(Object row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the editor to the specified row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the editor to the specified row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.selectAll
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects all the text in editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects all the text in editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.selectPageDown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the text from the current position of the document until where a "page down" finishes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the text from the current position of the document until where a "page down" finishes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.selectPageUp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the text from the current position of the document until where a "page up" finishes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the text from the current position of the document until where a "page up" finishes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setBehavioursEnabled(Boolean enabled)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specifies whether to use behaviors or not. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specifies whether to use behaviors or not. "Behaviors" in this case is the auto-pairing of special characters, like quotation marks, parenthesis, or brackets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              enabledBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Enables or disables behaviors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setDragDelay(Number dragDelay)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the delay (in milliseconds) of the mouse drag.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the delay (in milliseconds) of the mouse drag.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              dragDelayNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A value indicating the new delay

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setFontSize(Number size)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set a new font size (in pixels) for the editor text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set a new font size (in pixels) for the editor text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sizeNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A font size

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setHighlightActiveLine(Boolean shouldHighlight)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Determines whether or not the current line should be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Determines whether or not the current line should be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              shouldHighlightBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to highlight the current line

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setHighlightSelectedWord(Boolean shouldHighlight)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Determines if the currently selected word should be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Determines if the currently selected word should be highlighted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              shouldHighlightBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to highlight the currently selected word

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setKeyboardHandler(String keyboardHandler)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new key handler, such as "vim" or "windows".

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new key handler, such as "vim" or "windows".

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              keyboardHandlerString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new key handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setOverwrite(Boolean overwrite)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass in true to enable overwrites in your session, or false to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Pass in true to enable overwrites in your session, or false to disable. If overwrites is enabled, any text you enter will type over any text after it. If the value of overwrite changes, this function also emites the changeOverwrite event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              overwriteBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Defines wheter or not to set overwrites

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setPrintMarginColumn(Number showPrintMargin)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the column defining where the print margin should be.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the column defining where the print margin should be.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showPrintMarginNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Specifies the new print margin

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setReadOnly(Boolean readOnly)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If readOnly is true, then the editor is set to read-only mode, and none of the content can change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If readOnly is true, then the editor is set to read-only mode, and none of the content can change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              readOnlyBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Specifies whether the editor can be modified or not

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setScrollSpeed(Number speed)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets how fast the mouse scrolling should do.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets how fast the mouse scrolling should do.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              speedNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A value indicating the new speed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setSelectionStyle(String style)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates how selections should occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates how selections should occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              By default, selections are set to "line". This function also emits the 'changeSelectionStyle' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              styleString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new selection style

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new editsession to use. This method also emits the 'changeSession' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new editsession to use. This method also emits the 'changeSession' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new session to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setShowFoldWidgets(Boolean show)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates whether the fold widgets are shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Indicates whether the fold widgets are shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Specifies whether the fold widgets are shown

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setShowInvisibles(Boolean showInvisibles)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If showInvisibiles is set to true, invisible characters—like spaces or new lines—are show in the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If showInvisibiles is set to true, invisible characters—like spaces or new lines—are show in the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showInvisiblesBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Specifies whether or not to show invisible characters

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setShowPrintMargin(Boolean showPrintMargin)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If showPrintMargin is set to true, the print margin is shown in the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              If showPrintMargin is set to true, the print margin is shown in the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showPrintMarginBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Specifies whether or not to show the print margin

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setStyle(String style)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adds a new class, style, to the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              styleString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A class name

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setTheme(String theme)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              themeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The path to a theme

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the current document to val.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the current document to val.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              valString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new value to set for the document

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              cursorPosNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Where to set the new value. undefined or 0 is selectAll, -1 is at the document start, and 1 is at the end

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.setWrapBehavioursEnabled(Object enabled)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.setWrapBehavioursEnabled(enabled)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • enabled (Boolean): Enables or disables wrapping behaviors
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Editor.setWrapBehavioursEnabled(enabled)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • enabled (Boolean): Enables or disables wrapping behaviors
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specifies whether to use wrapping behaviors or not, i.e. automatically wrapping the selection with characters such as brackets +when such a character is typed in.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              enabledObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.splitLine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Splits the line at the current selection (by inserting an '\n').

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Splits the line at the current selection (by inserting an '\n').

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.toggleCommentLines
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given the currently selected range, this function either comments all the lines, or uncomments all of them.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given the currently selected range, this function either comments all the lines, or uncomments all of them.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.toggleOverwrite
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the value of overwrite to the opposite of whatever it currently is.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.toLowerCase
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts the current selection entirely into lowercase.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts the current selection entirely into lowercase.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.toUpperCase
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts the current selection entirely into uppercase.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Converts the current selection entirely into uppercase.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.transposeLetters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Transposes current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Transposes current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.undo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform an undo operation on the document, reverting the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform an undo operation on the document, reverting the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Editor.unsetStyle(Object style)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              styleObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/index.html b/api/index.html new file mode 100644 index 00000000..219ad14d --- /dev/null +++ b/api/index.html @@ -0,0 +1,12 @@ + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ace API Reference

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Welcome to the Ace API Reference Guide. Ace is a standalone code editor written in JavaScript that you can embed onto any website. We're used in a bunch of places already, like GitHub, Google, and Facebook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              On the left, you'll find a list of all of our currently documented classes. There are plenty more to do, but these represent the "core" set. For more information on how to work with Ace, check out the main Ace website.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/placeholder.html b/api/placeholder.html new file mode 100644 index 00000000..2ae5cca9 --- /dev/null +++ b/api/placeholder.html @@ -0,0 +1,313 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • new PlaceHolder
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • session (Document): The document to associate with the anchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • length (Number): The starting row position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • pos (Number): The starting column position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • others (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • mainClass (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • othersClass (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • session (Document): The document to associate with the anchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • length (Number): The starting row position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • pos (Number): The starting column position
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • others (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • mainClass (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • othersClass (String):
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.cancel
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.cancel()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.cancel()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              TODO

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.detach
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.detach()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.detach()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              TODO

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.hideOtherMarkers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.hideOtherMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.hideOtherMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hides all over markers in the EditSession that are not the currently selected one.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.onCursorChange(Object event)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder@onCursorChange(e)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder@onCursorChange(e)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the cursor changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eventObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.onUpdate(Object event)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder@onUpdate(e)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder@onUpdate(e)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the place holder updates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eventObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.setup
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.setup()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.setup()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              TODO

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • PlaceHolder.showOtherMarkers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.showOtherMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              PlaceHolder.showOtherMarkers()

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              TODO

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/range.html b/api/range.html new file mode 100644 index 00000000..dc491c76 --- /dev/null +++ b/api/range.html @@ -0,0 +1,964 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Range [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              This object is used in various places to indicate a region within the editor. To better visualize how this works, imagine a rectangle. Each quadrant of the rectangle is analogus to a range, as ranges contain a starting row and starting column, and an ending row, and ending column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Range object with the given starting and ending row and column points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Range object with the given starting and ending row and column points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              startRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              startColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              endRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The ending row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              endColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The ending column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the part of the current Range that occurs within the boundaries of firstRow and lastRow as a new Range object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the part of the current Range that occurs within the boundaries of firstRow and lastRow as a new Range object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The ending row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Range.clone +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a duplicate of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a duplicate of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Range.collapseRows +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a range containing the starting and ending rows of the original range, but with a column value of 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a range containing the starting and ending rows of the original range, but with a column value of 0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points of p with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points of p with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              pRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Compares this range (A) with another range (B).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Compares this range (A) with another range (B).

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the row and column points with the row and column points of the calling range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column provided are within the given range. This can better be expressed as returning true if:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 this.start.row <= row <= this.end.row &&
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +   this.start.column <= column <= this.end.column
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column provided are within the given range. This can better be expressed as returning true if:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 this.start.row <= row <= this.end.row &&
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +   this.start.column <= column <= this.end.column
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row to check for

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column to check for

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the start and end points of range and compares them to the calling range. Returns true if the range is contained within the caller's range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Checks the start and end points of range and compares them to the calling range. Returns true if the range is contained within the caller's range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changes the row and column points for the calling range for both the starting and ending points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changes the row and column points for the calling range for both the starting and ending points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A new row to extend to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A new column to extend to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates and returns a new Range based on the row and column of the given parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates and returns a new Range based on the row and column of the given parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              startRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A starting point to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              endRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An ending point to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's ending points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's ending points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's starting points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the row and column are within the given range's starting points.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if passed in range intersects with the one calling this method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if passed in range intersects with the one calling this method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A range to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the caller's ending row point is the same as row, and if the caller's ending column is the same as column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the caller's ending row point is the same as row, and if the caller's ending column is the same as column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Range.isEqual(Range range)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if and only if the starting row and column, and ending tow and column, are equivalent to those given by range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if and only if the starting row and column, and ending tow and column, are equivalent to those given by range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A range to check against

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Range.isMultiLine +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the range spans across multiple lines.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the range spans across multiple lines.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the caller's starting row point is the same as row, and if the caller's starting column is the same as column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the caller's starting row point is the same as row, and if the caller's starting column is the same as column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to compare with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to set

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to set

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the starting row and column for the range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row point to set

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A column point to set

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given the current Range, this function converts those starting and ending points into screen positions, and then returns a new Range object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Given the current Range, this function converts those starting and ending points into screen positions, and then returns a new Range object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The EditSession to retrieve coordinates from

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Range.toString
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a string containing the range's row and column information, given like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 [start.row/start.column] -> [end.row/end.column]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns a string containing the range's row and column information, given like this:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                 [start.row/start.column] -> [end.row/end.column]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/renderloop.html b/api/renderloop.html new file mode 100644 index 00000000..4f47d88d --- /dev/null +++ b/api/renderloop.html @@ -0,0 +1,55 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              RenderLoop [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Batches changes (that force something to be redrawn) in the background.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/resources/csses/ace_api.css b/api/resources/csses/ace_api.css new file mode 100644 index 00000000..33d72657 --- /dev/null +++ b/api/resources/csses/ace_api.css @@ -0,0 +1,993 @@ +/* + Generic "affects everything" stuff +*/ + +#wrapper .content .column2 { + float: none; +} + +#documentation ul { + font-size: 13px; +} + +#documentation li { + color: black; +} + +#documentation code { + font-size: 12px; + line-height: 16px; + font-family: 'Ubuntu Mono',Monaco,Consolas,monospace !important; + background-color: #F9F9F9; + border-radius: 3px 3px 3px 3px; + box-shadow: 0 0 2px #888888; + display: inline-block; + padding: 0 4px; + margin: 2px 1px; + color: inherit; +} + +#documentation pre { + margin-top: 10px; + border-radius: none; + box-shadow: none; + background : white; + /*background : #f5f5f5; + border: 0;*/ + + -webkit-border-radius: 6px 6px 0 0; + -moz-border-radius: 6px 6px 0 0; + border-radius: 6px 6px 0 0; + + padding: 5px; +} + +.method pre, .event pre, .property pre { + background : white; +} + +#documentation pre code { + background-color: transparent; + border-radius: none; + box-shadow: none; +} + +#documentation a code { + color: #00438a; +} + +#documentation h2 { + font-size: 26px; +} +#documentation p { + font-size: 13px; + line-height : 20px; + margin-bottom : 13px; +} +#documentation li p:last-child { + margin-bottom : 5px; +} + +#documentation blockquote p{ + font-size: 14px; + font-weight: 500; + line-height: 23px; + font-style: italic; +} + +.alert-message{ + margin-bottom : 13px; +} +/* + Header and shoulders +*/ + +.navbar .nav > li { + float:none; + display:inline-block; + *display:inline; /* ie7 fix */ + zoom:1; /* hasLayout ie7 trigger */ +} + +.navbar .nav > li > a { + padding: 10px 15px 11px; +} + +.navbar { + text-align:center; +} + +#topSection { + width: 1000px; +} +.small_win #topSection { + width: 100%; +} +.small_win #topSection .dropdown { + margin-right: 40%; +} +.navbar .brand { + margin-left: 0px; +} +.brand { + background: transparent url(../images/ace_logo_menu.png) no-repeat 33px 5px; + width: 80px; + outline: none; + height: 40px; + padding: 0 10px !important; + border: none; +} +.brand.dropdown-toggle:after { + content: none; + display: block; + height: 40px; + border: none; +} + +.ace_logo { + position: absolute; + top: 45px; + z-index: 20000; + left: 210px; +} + +.headerTitle { + position: relative; + top: 100px; + left: 250px; +} + +/* + Menu venue +*/ + +form.navbar-search { + float: none; +} + +form.navbar-search .search-query { + background-color: #FFFFFF; + border-color: #999; + -webkit-transition: border 0.3s; + -moz-transition: border 0.3s; + font-size: 14px; + line-height: 16px; +} + +form.navbar-search .search-query:focus, form.navbar-search .search-query:active { + border: 1px solid #666; +} + +.navbar-search .search-query:focus, .navbar-search .search-query.focused { + padding: 4px 9px; +} + +h3.api_title { + padding-top: 10px; +} + +ul.menu { + margin-left: 2px; +} + +.menu li { + list-style-image: url(../images/menu_disc.png); + margin-bottom: 4px; + font-weight: 700; + padding-left: 10px; + margin-left: 0; +} + +.menu li .menu-item a.menuLink, .menu li .menu-item span.menuLink { + color: #3E7096; + font-weight: 100; +} +.menuTwo { + margin-bottom: 5px; + margin-top: 2px; +} +.menuTwo li .menu-item a.menuLink { + color: #3E7096; + font-weight: 100; +} + +/* need specificity to "beat" the above colors */ +.menu li .menu-item a.currentItem, .menuTwo li .menu-item { + color: #0072bc; +} + +/* + Members and the tabs that represent them +*/ + +.members { +/* width: 800px; */ + /*width: 700px;*/ +/* margin: 0 10px;*/ + + height: 42px; + left: 0; +/* position: fixed;*/ + top: 0; +/* transition-duration: 300ms, 300ms; + transition-property: box-shadow, height; + transition-timing-function: ease-out, ease-out; + -moz-transition-duration: 300ms, 300ms; + -moz-transition-property: -moz-box-shadow, height; + -moz-transition-timing-function: ease-out, ease-out; + -o-transition-duration: 300ms, 300ms; + -o-transition-property: -o-box-shadow, height; + -o-transition-timing-function: ease-out, ease-out; + -webkit-transition-duration: 300ms, 300ms; + -webkit-transition-property: -webkit-box-shadow, height; + -webkit-transition-timing-function: ease-out, ease-out;*/ +/* width: 100%;*/ + /*transition-duration: 300ms; + transition-property: box-shadow; + transition-timing-function: ease-out; + -moz-transition-duration: 300ms, 300ms; + -moz-transition-property: -moz-box-shadow, height; + -moz-transition-timing-function: ease-out, ease-out; + -o-transition-duration: 300ms; + -o-transition-property: -o-box-shadow; + -o-transition-timing-function: ease-out;*/ + -webkit-transition-duration: 400ms, 0ms; + -webkit-transition-property: -webkit-box-shadow, background; + -webkit-transition-timing-function: ease-out, ease-out; + z-index: 100; + padding-bottom : 5px; + overflow: visible !important; + +/* background: #FFF; + width: 100%; + padding-bottom: 13px; + top: 40px; + position: fixed;*/ +} +.srolled .members { + width: 100%; +/* -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); + -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); + box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35); */ + padding-bottom: 15px; +/* height: 31px;*/ + position: fixed; +} +.shadow.members{ + background: #edf8fd; + box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); + -moz-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); + -o-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); + -webkit-box-shadow: 0 0.1em 1em rgba(0,0,0, 0.3); +} + +.membersContent { + +/* border-bottom: 0.1em solid #FFF;*/ + height: 3em; + padding-top: 4px; +/* line-height: 4;*/ +/* margin-top: -0.1em;*/ + position: relative; +/* transition-property: border-color, line-height; + transition-duration: 125ms, 250ms; + transition-timing-function: ease-out, ease-out; + -moz-transition-property: border-color, line-height; + -moz-transition-duration: 125ms, 250ms; + -moz-transition-timing-function: ease-out, ease-out; + -o-transition-property: border-color, line-height; + -o-transition-duration: 125ms, 250ms; + -o-transition-timing-function: ease-out, ease-out; + -webkit-transition-property: border-color, line-height; + -webkit-transition-duration: 125ms, 250ms; + -webkit-transition-timing-function: ease-out, ease-out;*/ + + /*transition-duration: 125ms; + transition-property: top; + transition-timing-function: ease-out; + + top : 11px;*/ + z-index: 103; + padding-right: 10px; + margin-right: -5px; + /*width: 700px;*/ +} +.srolledHeader .membersContent { + line-height: 3; +} +.srolled .membersContent { + /*top : 0;*/ + width: 625px; + padding-left: 327px; + margin : 0 auto 0 auto; +} + +.srolled ul.nav { + padding-right: 10px; +} + +.membersBackground { +/* background-color: white; + position: fixed; + z-index: 2; + top: 40px; + left: 0px; + right: 0px; + width: 100%; + height: 55px; + opacity: 0; + display: none; + box-shadow: rgba(0, 0, 0, 0.398438) 1px 4px 6px;*/ + + background-color: transparent; + height: 47px; + /*width: 700px;*/ + position: absolute; +} +.srolled .membersBackground { + position: relative; +} +.srolledHeader .membersBackground { +/* display: block;*/ +} +.memberHeader { + float: left; + padding-right: 10px; + margin-bottom: 5px; + position: absolute; + padding-top: 4px; + +} + +.tabs a.menu:after, .tabs .dropdown-toggle:after { + margin-top: 22px; +} + +.dropdown .caret { + margin-top: 14px; + color: #6D8CA0; +} + +li.dropdown { + color: #2D2D2D; + font-weight: bold; +} + +.editInC9 { + font-size: 11px; + color: #657383; +} + +.editInC9 a { + color: #657383; + font-weight: normal; + position : relative; + top : -2px; +} + +.tabs { + padding-top: 14px; + /*border-bottom: 1px solid #848484;*/ + min-height : 27px; + padding-bottom : 5px; +} +.tabsSansBorder { + border: 0; +} +.tabs, .pills { + margin-bottom: 0; +} +.srolledHeader .members .tabs { + background-color: white; +} + +li.dropdown { + color: #2D2D2D; + font-weight: bold; +} + +.members .tabs .dropdown a, +.members .tabs a.menu:after, +.members .tabs .dropdown-toggle:after { + margin-right: 0; + margin-left: 6px; +} + +.members .tabs ul li { + font-weight: bold; +} + +.memberLink a { + margin-left: 0 !important; +} +.menu-dropdown, .dropdown-menu { + min-width : 105px; + max-height: 350px; + overflow: auto; + border-color : rgba(0, 0, 0, 0.1); +} +.topbar div > ul .menu-dropdown li a:hover, +.nav .menu-dropdown li a:hover, +.topbar div > ul .dropdown-menu li a:hover, +.nav .dropdown-menu li a:hover { + background-color: #ffffff; + color: #000000; +} +.dropdown-menu { + border-top: none; +} + +.tabs a.menu:after, .tabs .dropdown-toggle:after { + margin-top: 13px; + line-height: 28px; +} +.open .menu, .dropdown.open .menu, .open .dropdown-toggle, .dropdown.open .dropdown-toggle { + background: transparent; + color: black; +/* font-weight: bold;*/ +} +#topSection .open .menu, #topSection .dropdown.open .menu, #topSection .open .dropdown-toggle, +#topSection .dropdown.open .dropdown-toggle { + color: #bfbfbf; +} + +.tabs > li { + font-weight: bold; +} + +.tabs > li > a { + border: none; + outline: none; + line-height: 28px; + font-size: 11px; + padding: 0 5px; +} +.tabs > li > a:hover { + color: #000000; + text-decoration: none; + background-color: transparent; + border: none; +} +.tabs > li, .pills > li { + float: right; +} +.topbar .dropdown-menu a, .dropdown-menu a { + font-size: 11px; +/* padding: 2px 12px;*/ + line-height: 14px; +} +.tabs .active > a, .tabs .active > a:hover { + color: #000000; + border: none; + cursor: default; +} +.tabs .menu-dropdown, .tabs .dropdown-menu { + border-radius: 0 0 6px 6px; + top: 32px; + right: 0px; + width: 150px; +} +.srolled .tabs .menu-dropdown, .srolled .tabs .dropdown-menu { + top: 32px; +} +.dropdown-toggle { + color: #6D8CA0; +} + +ul.tabs .double ul, ul.tabs .triple ul, ul.tabs .quad ul{ + width:760px; + margin-bottom:20px; + overflow:hidden; + border-top:1px solid #ccc; +} +/*ul.tabs .double li, ul.tabs .triple li, ul.tabs .quad li{ + line-height:1.5em; + border-bottom:1px solid #ccc; + float:left; + display:inline; +}*/ + +/* + Center content (the "real stuff") +*/ + +#nonFooter { + padding-top: 40px; +} +#wrapper { + height: 100%; +} + +.content { + height: 100%; +} +.content .row { + margin-left: auto; + margin-right: auto; +} + +header.filler { + position: relative; + height: 40px; + width: 100%; +} + +.centerpiece { + min-height: 100%; + padding: 20px 0; +} + +/* +.container-fluid .row-fluid { + width: 1000px; + margin-left: auto; + margin-right: auto; +}*/ + +.divider { + height: 3px; + background-color: #BEDAEA; + margin-bottom: 3px; +} + +#sidebar { + margin-top: 5px; + /*background: url(../images/sidebar-border.png) repeat-y right 0;*/ + margin-left: 12px; +/* width: 280px;*/ +/* overflow: auto;*/ + padding-right : 10px; +} + +#sidebar h3 a, +#sidebar h3 a:hover { + color: #404040; +} + +#mainContent { + margin-left: 30px; +} + +#documentation { + padding-left: 15px; + padding-bottom: 10px; +} + +#documentation article.article { + border-top: 1px solid #e9e9e9; + padding: 16px 10px 2px; + -webkit-transition: padding 0.2s; + -moz-transition: padding 0.2s; + -o-transition: padding 0.2s; +} + +#documentation h3.sectionHeader + article.article { + border-top: none; +} + +div#documentation article:last-child { + border-bottom: 1px solid #e9e9e9; + padding-bottom: 40px; +} +#documentation article.article.methodToggleOpen { + background: rgba(255, 255, 255, 0.5); + padding: 20px; + font-size: 13px; + line-height: 24px; + margin: 0 0 10px 0; +} + +#documentation article:first-child { + border:none; +} + +.site_logo { + display: block; + margin-left: auto; + margin-right: auto; +} +/* + Edit in Cloud9, sucka +*/ + +.snippet pre { + margin-bottom: 0; +} + +.snippet .toolbar { + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + + text-align: right; + padding: 3px 10px; + margin-top : -1px; +} + +.snippet .filename, .snippet .toolbar { + font-family: Ubuntu, sans-serif; + font-size: 12px; + color: #EEE; +} + +.snippet .filename { + padding: 0 5px 2px 5px; + font-size: 10px; + background: rgba(230,230,230,0.5); + padding: 0 5px 2px 5px; + border-radius: 0 6px 0 6px; + margin : 1px; + position : absolute; + right : 0; + top : 0; +} + +.snippet .filename span{ + color : #666; +} + +.snippet .toolbar { + background-color: rgba(30,30,30,0.5); +} + +div.snippet { + margin-bottom: 18px; + position : relative; +} + +div.snippet a, div.toolbar a { + color: #FFF; +} + +/* + All about signatures +*/ + +.signatures { +/* width: 800px;*/ + margin-left: 20px; + margin-bottom: 5px; +} +.sideToggler { + padding-left: 20px; +} +ul.signatures ul { + list-style: none; + display: inline; +} + +li.signature { + list-style: none; +} + +.signature ul { + padding: 0; + margin: 0; +} + +.signature li { + display: inline; +} + +.signature ul.argument-types::before { + content: '→'; + margin: 0 5px; +} + +.signature li.argument-type::after { + content: '|'; + padding: 0 5px 0 5px; +} + +.signature li.argument-type:last-child:after { + content: ''; + padding: 0 5px 0 5px; +} + +.member-name { + color: #4397cd; + font-weight: bold; + text-decoration: none; + cursor: pointer; + padding-right: 3px; +} + +.signature-call { + cursor: pointer; +} + +#documentation .signature-call a { + color: #8e487e; +} + +.sigClassName { + display: none; +} + +.eventObjName { + font-style: italic; +} +.eventListenerStart, .eventFunctionOpen, .eventFunctionClose, .eventListenerClose { + color: #999999; +} +.eventMember { + padding-right: 0px; +} + +.metaInfo { + float: right; + z-index: 1; + position: relative; +} + +.chainable { + background-color: #0072bc; + color: #ffffff; +} + +.deprecated { + background-color: #f7941d; + color: #ffffff; +} + +.alias { + background-color: #6c951e; + color: #ffffff; +} + +.related-to { + background-color: #89289a; + color: #ffffff; + font-size: 10px; + padding: 2px 5px 3px; + text-transform: capitalize; +} + +#documentation .alias a, #documentation .related-to a { + color: #ffffff; + /* text-decoration: underline; */ +} +#documentation .alias a:hover, #documentation .related-to a:hover { + text-decoration: none; +} +.#documentation alias:hover, #documentation .related-to:hover { + opacity: 0.8; + cursor: pointer; +} +.memberContent .title { + +} +.memberContent .description { + position:relative; + /*top: -13px;*/ + display: none; +} +.snip-container .actions .toggle-plaintext label { + margin-top: 1px; + padding-top: 0; + text-align: left; +} +.snip-container .actions .toggle-plaintext input { + margin-top: 4px !important; +} +.snip-container label { + color: #ffffff; +} +.description h4 { + font-size: 18px; + margin: 20px 0 10px; + line-height : 18px; +} + +.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th { + background-color: #F9F9F9; +} +.table-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th { + background-color: #fbfbfb; +} + +.argument-list { + margin-bottom : 13px; +} +.argName { + font-style: italic; +} + + +/* + Everyday I'm togglin' +*/ + +#documentation h3 { + font-size: 24px; + margin-top: 5px; +} +#documentation i.methodToggle { + cursor: pointer; + color: #9f9f9f; + padding-top: 2px; + float: left; +} +#documentation i.methodToggle.methodToggleHover { + text-shadow: 0 0 10px #4699d5; + color: #4699d5; +} +#documentation i.methodToggle.active { + text-shadow: 0 0 10px #4699d5; + color: #4699d5; + /* Safari */ + -webkit-transform: rotate(45deg); + + /* Firefox */ + -moz-transform: rotate(45deg); + + /* IE */ + -ms-transform: rotate(45deg); + + /* Opera */ + -o-transform: rotate(45deg); + padding-top: 9px; +} + +#documentation h3.sectionHeader { + margin: 10px 0 17px 0; + line-height : 24px; +} + +div.method { + position: relative; +} + +.methodToggle a { + color: #fff; + border-bottom: 0px; + text-decoration: none; +} + +h3.methodToggle { + height : 13px; + width : 8px; + background-position : 0px 0px; + position: absolute; + top: -20px; + background-image : url(../images/member-sprites.png); + background-color : transparent; + background-repeat : no-repeat; + overflow: hidden; + left: 0px; +} + +h3.methodToggleHover { + /* background-position : 0px -28px; */ +} + +h3.methodToggle.inactive { + top: 4px; +} + +h3.methodToggle.active { + top: 6px; + height : 13px; + width : 8px; + background-position : 0px -59px; +} + +.hidden { + display: none; + visibility: hidden; +} + +.hiddenSpan { + display: none; +} + +.ellipsis_description, .short_description { +/* width: 800px;*/ +} +.methodToggleOpen .ellipsis_description { + display: none; +} +.sideToggler .short_description, +.sideToggler .description{ + display: none; +} +.methodToggleOpen .short_description, +.methodToggleOpen .description { + display: block; +} +.description td p { + margin: 0; +} +/* + Footer? I hardly know her +*/ + +#footer { + width:100%; + background: #101010 url(../images/dashed_back.png) repeat 0 0; + font-size: 12px; + color: white; + height: 40px; +} +#footer .footerInner { + padding-left: 300px; + margin-left: auto; + margin-right: auto; + min-height: 40px; +} +#footer .footer-text { + display: block; + font-size: 12px; + float: right; +} +#footer div.footerInner div.footer-text p { + font-size: 12px; + font-family: Arial; + line-height: 18px; + margin: 10px 15px 0px 1px; +} + +#footer a, #footer a:hover { + color: #8DD0FF; +} + +.logoText, .logoImg { + /*position: absolute;*/ + margin-bottom: 5px; +} + +.logoImg { + top: 40px; +} +.topbar div > ul .menu-dropdown li a:hover, +.nav .menu-dropdown li a:hover, +.topbar div > ul .dropdown-menu li a:hover, +.nav .dropdown-menu li a:hover { + background-color: #191919; + background-repeat: repeat-x; + background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919)); + background-image: -moz-linear-gradient(top, #292929, #191919); + background-image: -ms-linear-gradient(top, #292929, #191919); + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919)); + background-image: -webkit-linear-gradient(top, #292929, #191919); + background-image: -o-linear-gradient(top, #292929, #191919); + background-image: linear-gradient(top, #292929, #191919); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0); + color: #ffffff; +} + +.alert-message.block-message { + background: #fefaca; + border-color : #fefaca; + padding : 8px 14px 8px 14px; +} + +body .dsq-reply{ + margin-top : 10px; +} + +#disqus_thread{ + border-top : 1px solid #ddd; + margin-top : 30px; +} + +#disqus_thread h3, body #dsq-content h3 { + font-size : 12px; + margin : 0 0 20px 0; + line-height : 12px; +} +body #dsq-reply h3{ + font-size : 18px; + line-height : 18px; + margin : 15px 0 20px 0; +} + +#disqus_thread select{ + font-size : 11px; + height : 20px; + color : #444; +} + +#dsq-global-toolbar, #dsq-pagination, .dsq-trackback-url{ + display : none; +} diff --git a/api/resources/csses/bootstrap.min.css b/api/resources/csses/bootstrap.min.css new file mode 100644 index 00000000..c9514677 --- /dev/null +++ b/api/resources/csses/bootstrap.min.css @@ -0,0 +1,689 @@ +article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} +audio:not([controls]){display:none;} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} +a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +a:hover,a:active{outline:0;} +sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} +sup{top:-0.5em;} +sub{bottom:-0.25em;} +img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;} +button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} +button,input{*overflow:visible;line-height:normal;} +button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} +button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} +input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} +textarea{overflow:auto;vertical-align:top;} +.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";} +.clearfix:after{clear:both;} +.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;} +.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;} +body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;} +a{color:#0088cc;text-decoration:none;} +a:hover{color:#005580;text-decoration:underline;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";} +.row:after{clear:both;} +[class*="span"]{float:left;margin-left:20px;} +.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.span12{width:940px;} +.span11{width:860px;} +.span10{width:780px;} +.span9{width:700px;} +.span8{width:620px;} +.span7{width:540px;} +.span6{width:460px;} +.span5{width:380px;} +.span4{width:300px;} +.span3{width:220px;} +.span2{width:140px;} +.span1{width:60px;} +.offset12{margin-left:980px;} +.offset11{margin-left:900px;} +.offset10{margin-left:820px;} +.offset9{margin-left:740px;} +.offset8{margin-left:660px;} +.offset7{margin-left:580px;} +.offset6{margin-left:500px;} +.offset5{margin-left:420px;} +.offset4{margin-left:340px;} +.offset3{margin-left:260px;} +.offset2{margin-left:180px;} +.offset1{margin-left:100px;} +.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";} +.row-fluid:after{clear:both;} +.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;} +.row-fluid>[class*="span"]:first-child{margin-left:0;} +.row-fluid > .span12{width:99.99999998999999%;} +.row-fluid > .span11{width:91.489361693%;} +.row-fluid > .span10{width:82.97872339599999%;} +.row-fluid > .span9{width:74.468085099%;} +.row-fluid > .span8{width:65.95744680199999%;} +.row-fluid > .span7{width:57.446808505%;} +.row-fluid > .span6{width:48.93617020799999%;} +.row-fluid > .span5{width:40.425531911%;} +.row-fluid > .span4{width:31.914893614%;} +.row-fluid > .span3{width:23.404255317%;} +.row-fluid > .span2{width:14.89361702%;} +.row-fluid > .span1{width:6.382978723%;} +.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";} +.container:after{clear:both;} +.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";} +.container-fluid:after{clear:both;} +p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;} +.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;} +h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;} +h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;} +h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;} +h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;} +h4,h5,h6{line-height:18px;} +h4{font-size:14px;}h4 small{font-size:12px;} +h5{font-size:12px;} +h6{font-size:11px;color:#999999;text-transform:uppercase;} +.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;} +.page-header h1{line-height:1;} +ul,ol{padding:0;margin:0 0 9px 25px;} +ul ul,ul ol,ol ol,ol ul{margin-bottom:0;} +ul{list-style:disc;} +ol{list-style:decimal;} +li{line-height:18px;} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none;} +dl{margin-bottom:18px;} +dt,dd{line-height:18px;} +dt{font-weight:bold;line-height:17px;} +dd{margin-left:9px;} +.dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;} +.dl-horizontal dd{margin-left:130px;} +hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;} +strong{font-weight:bold;} +em{font-style:italic;} +.muted{color:#999999;} +abbr[title]{border-bottom:1px dotted #ddd;cursor:help;} +abbr.initialism{font-size:90%;text-transform:uppercase;} +blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;} +blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;} +q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;} +small{font-size:100%;} +cite{font-style:normal;} +code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;} +pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;} +pre code{padding:0;color:inherit;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;} +form{margin:0 0 18px;} +fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;} +label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;color:#333333;} +input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.uneditable-textarea{width:auto;height:auto;} +label input,label textarea,label select{display:block;} +input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;} +input[type="image"]{border:0;} +input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;} +select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;} +input[type="file"]{line-height:18px \9;} +select{width:220px;background-color:#ffffff;} +select[multiple],select[size]{height:auto;} +input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +textarea{height:auto;} +input[type="hidden"]{display:none;} +.radio,.checkbox{padding-left:18px;} +.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;} +.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;} +input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;} +input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.input-mini{width:60px;} +.input-small{width:90px;} +.input-medium{width:150px;} +.input-large{width:210px;} +.input-xlarge{width:270px;} +.input-xxlarge{width:530px;} +input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;} +input,textarea,.uneditable-input{margin-left:0;} +input.span12, textarea.span12, .uneditable-input.span12{width:930px;} +input.span11, textarea.span11, .uneditable-input.span11{width:850px;} +input.span10, textarea.span10, .uneditable-input.span10{width:770px;} +input.span9, textarea.span9, .uneditable-input.span9{width:690px;} +input.span8, textarea.span8, .uneditable-input.span8{width:610px;} +input.span7, textarea.span7, .uneditable-input.span7{width:530px;} +input.span6, textarea.span6, .uneditable-input.span6{width:450px;} +input.span5, textarea.span5, .uneditable-input.span5{width:370px;} +input.span4, textarea.span4, .uneditable-input.span4{width:290px;} +input.span3, textarea.span3, .uneditable-input.span3{width:210px;} +input.span2, textarea.span2, .uneditable-input.span2{width:130px;} +input.span1, textarea.span1, .uneditable-input.span1{width:50px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;} +.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";} +.form-actions:after{clear:both;} +.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;} +:-moz-placeholder{color:#999999;} +::-webkit-input-placeholder{color:#999999;} +.help-block,.help-inline{color:#555555;} +.help-block{display:block;margin-bottom:9px;} +.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;} +.input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;} +.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;} +.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;} +.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;} +.input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;} +.input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} +.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;} +.form-search label,.form-inline label{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;} +.control-group{margin-bottom:9px;} +legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";} +.form-horizontal .control-group:after{clear:both;} +.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;} +.form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;} +.form-horizontal .help-block{margin-top:9px;margin-bottom:0;} +.form-horizontal .form-actions{padding-left:160px;} +table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;} +.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;} +.table th{font-weight:bold;} +.table thead th{vertical-align:bottom;} +.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} +.table tbody+tbody{border-top:2px solid #dddddd;} +.table-condensed th,.table-condensed td{padding:4px 5px;} +.table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;} +.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;} +.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;} +.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;} +.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;} +.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;} +.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;} +table .span1{float:none;width:44px;margin-left:0;} +table .span2{float:none;width:124px;margin-left:0;} +table .span3{float:none;width:204px;margin-left:0;} +table .span4{float:none;width:284px;margin-left:0;} +table .span5{float:none;width:364px;margin-left:0;} +table .span6{float:none;width:444px;margin-left:0;} +table .span7{float:none;width:524px;margin-left:0;} +table .span8{float:none;width:604px;margin-left:0;} +table .span9{float:none;width:684px;margin-left:0;} +table .span10{float:none;width:764px;margin-left:0;} +table .span11{float:none;width:844px;margin-left:0;} +table .span12{float:none;width:924px;margin-left:0;} +table .span13{float:none;width:1004px;margin-left:0;} +table .span14{float:none;width:1084px;margin-left:0;} +table .span15{float:none;width:1164px;margin-left:0;} +table .span16{float:none;width:1244px;margin-left:0;} +table .span17{float:none;width:1324px;margin-left:0;} +table .span18{float:none;width:1404px;margin-left:0;} +table .span19{float:none;width:1484px;margin-left:0;} +table .span20{float:none;width:1564px;margin-left:0;} +table .span21{float:none;width:1644px;margin-left:0;} +table .span22{float:none;width:1724px;margin-left:0;} +table .span23{float:none;width:1804px;margin-left:0;} +table .span24{float:none;width:1884px;margin-left:0;} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;line-height:14px;vertical-align:text-top;background-image:url("../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;*margin-right:.3em;}[class^="icon-"]:last-child,[class*=" icon-"]:last-child{*margin-left:0;} +.icon-white{background-image:url("../img/glyphicons-halflings-white.png");} +.icon-glass{background-position:0 0;} +.icon-music{background-position:-24px 0;} +.icon-search{background-position:-48px 0;} +.icon-envelope{background-position:-72px 0;} +.icon-heart{background-position:-96px 0;} +.icon-star{background-position:-120px 0;} +.icon-star-empty{background-position:-144px 0;} +.icon-user{background-position:-168px 0;} +.icon-film{background-position:-192px 0;} +.icon-th-large{background-position:-216px 0;} +.icon-th{background-position:-240px 0;} +.icon-th-list{background-position:-264px 0;} +.icon-ok{background-position:-288px 0;} +.icon-remove{background-position:-312px 0;} +.icon-zoom-in{background-position:-336px 0;} +.icon-zoom-out{background-position:-360px 0;} +.icon-off{background-position:-384px 0;} +.icon-signal{background-position:-408px 0;} +.icon-cog{background-position:-432px 0;} +.icon-trash{background-position:-456px 0;} +.icon-home{background-position:0 -24px;} +.icon-file{background-position:-24px -24px;} +.icon-time{background-position:-48px -24px;} +.icon-road{background-position:-72px -24px;} +.icon-download-alt{background-position:-96px -24px;} +.icon-download{background-position:-120px -24px;} +.icon-upload{background-position:-144px -24px;} +.icon-inbox{background-position:-168px -24px;} +.icon-play-circle{background-position:-192px -24px;} +.icon-repeat{background-position:-216px -24px;} +.icon-refresh{background-position:-240px -24px;} +.icon-list-alt{background-position:-264px -24px;} +.icon-lock{background-position:-287px -24px;} +.icon-flag{background-position:-312px -24px;} +.icon-headphones{background-position:-336px -24px;} +.icon-volume-off{background-position:-360px -24px;} +.icon-volume-down{background-position:-384px -24px;} +.icon-volume-up{background-position:-408px -24px;} +.icon-qrcode{background-position:-432px -24px;} +.icon-barcode{background-position:-456px -24px;} +.icon-tag{background-position:0 -48px;} +.icon-tags{background-position:-25px -48px;} +.icon-book{background-position:-48px -48px;} +.icon-bookmark{background-position:-72px -48px;} +.icon-print{background-position:-96px -48px;} +.icon-camera{background-position:-120px -48px;} +.icon-font{background-position:-144px -48px;} +.icon-bold{background-position:-167px -48px;} +.icon-italic{background-position:-192px -48px;} +.icon-text-height{background-position:-216px -48px;} +.icon-text-width{background-position:-240px -48px;} +.icon-align-left{background-position:-264px -48px;} +.icon-align-center{background-position:-288px -48px;} +.icon-align-right{background-position:-312px -48px;} +.icon-align-justify{background-position:-336px -48px;} +.icon-list{background-position:-360px -48px;} +.icon-indent-left{background-position:-384px -48px;} +.icon-indent-right{background-position:-408px -48px;} +.icon-facetime-video{background-position:-432px -48px;} +.icon-picture{background-position:-456px -48px;} +.icon-pencil{background-position:0 -72px;} +.icon-map-marker{background-position:-24px -72px;} +.icon-adjust{background-position:-48px -72px;} +.icon-tint{background-position:-72px -72px;} +.icon-edit{background-position:-96px -72px;} +.icon-share{background-position:-120px -72px;} +.icon-check{background-position:-144px -72px;} +.icon-move{background-position:-168px -72px;} +.icon-step-backward{background-position:-192px -72px;} +.icon-fast-backward{background-position:-216px -72px;} +.icon-backward{background-position:-240px -72px;} +.icon-play{background-position:-264px -72px;} +.icon-pause{background-position:-288px -72px;} +.icon-stop{background-position:-312px -72px;} +.icon-forward{background-position:-336px -72px;} +.icon-fast-forward{background-position:-360px -72px;} +.icon-step-forward{background-position:-384px -72px;} +.icon-eject{background-position:-408px -72px;} +.icon-chevron-left{background-position:-432px -72px;} +.icon-chevron-right{background-position:-456px -72px;} +.icon-plus-sign{background-position:0 -96px;} +.icon-minus-sign{background-position:-24px -96px;} +.icon-remove-sign{background-position:-48px -96px;} +.icon-ok-sign{background-position:-72px -96px;} +.icon-question-sign{background-position:-96px -96px;} +.icon-info-sign{background-position:-120px -96px;} +.icon-screenshot{background-position:-144px -96px;} +.icon-remove-circle{background-position:-168px -96px;} +.icon-ok-circle{background-position:-192px -96px;} +.icon-ban-circle{background-position:-216px -96px;} +.icon-arrow-left{background-position:-240px -96px;} +.icon-arrow-right{background-position:-264px -96px;} +.icon-arrow-up{background-position:-289px -96px;} +.icon-arrow-down{background-position:-312px -96px;} +.icon-share-alt{background-position:-336px -96px;} +.icon-resize-full{background-position:-360px -96px;} +.icon-resize-small{background-position:-384px -96px;} +.icon-plus{background-position:-408px -96px;} +.icon-minus{background-position:-433px -96px;} +.icon-asterisk{background-position:-456px -96px;} +.icon-exclamation-sign{background-position:0 -120px;} +.icon-gift{background-position:-24px -120px;} +.icon-leaf{background-position:-48px -120px;} +.icon-fire{background-position:-72px -120px;} +.icon-eye-open{background-position:-96px -120px;} +.icon-eye-close{background-position:-120px -120px;} +.icon-warning-sign{background-position:-144px -120px;} +.icon-plane{background-position:-168px -120px;} +.icon-calendar{background-position:-192px -120px;} +.icon-random{background-position:-216px -120px;} +.icon-comment{background-position:-240px -120px;} +.icon-magnet{background-position:-264px -120px;} +.icon-chevron-up{background-position:-288px -120px;} +.icon-chevron-down{background-position:-313px -119px;} +.icon-retweet{background-position:-336px -120px;} +.icon-shopping-cart{background-position:-360px -120px;} +.icon-folder-close{background-position:-384px -120px;} +.icon-folder-open{background-position:-408px -120px;} +.icon-resize-vertical{background-position:-432px -119px;} +.icon-resize-horizontal{background-position:-456px -118px;} +.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;} +.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid #000000;opacity:0.3;filter:alpha(opacity=30);content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;} +.dropdown:hover .caret,.open.dropdown .caret{opacity:1;filter:alpha(opacity=100);} +.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:160px;padding:4px 0;margin:0;list-style:none;background-color:#ffffff;border-color:#ccc;border-color:rgba(0, 0, 0, 0.2);border-style:solid;border-width:1px;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;*border-right-width:2px;*border-bottom-width:2px;}.dropdown-menu.pull-right{right:0;left:auto;} +.dropdown-menu .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} +.dropdown-menu a{display:block;padding:3px 15px;clear:both;font-weight:normal;line-height:18px;color:#333333;white-space:nowrap;} +.dropdown-menu li>a:hover,.dropdown-menu .active>a,.dropdown-menu .active>a:hover{color:#ffffff;text-decoration:none;background-color:#0088cc;} +.dropdown.open{*z-index:1000;}.dropdown.open .dropdown-toggle{color:#ffffff;background:#ccc;background:rgba(0, 0, 0, 0.3);} +.dropdown.open .dropdown-menu{display:block;} +.pull-right .dropdown-menu{left:auto;right:0;} +.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"\2191";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.typeahead{margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);} +.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;} +.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;} +.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;} +.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;} +.btn:active,.btn.active{background-color:#cccccc \9;} +.btn:first-child{*margin-left:0;} +.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.btn-large [class^="icon-"]{margin-top:1px;} +.btn-small{padding:5px 9px;font-size:11px;line-height:16px;} +.btn-small [class^="icon-"]{margin-top:-1px;} +.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;} +.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);} +.btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;} +.btn-primary:active,.btn-primary.active{background-color:#004099 \9;} +.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;} +.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;} +.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;} +.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;} +.btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;} +button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";} +.btn-group:after{clear:both;} +.btn-group:first-child{*margin-left:0;} +.btn-group+.btn-group{margin-left:5px;} +.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;} +.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;} +.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;} +.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;} +.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;} +.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;} +.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;} +.btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;} +.btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;} +.btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;} +.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);} +.btn .caret{margin-top:7px;margin-left:0;} +.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);} +.btn-mini .caret{margin-top:5px;} +.btn-small .caret{margin-top:6px;} +.btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);} +.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;} +.alert-heading{color:inherit;} +.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;} +.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;} +.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;} +.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;} +.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;} +.alert-block p+p{margin-top:5px;} +.nav{margin-left:0;margin-bottom:18px;list-style:none;} +.nav>li>a{display:block;} +.nav>li>a:hover{text-decoration:none;background-color:#eeeeee;} +.nav .nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:18px;color:#999999;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;} +.nav-list{padding-left:15px;padding-right:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-left:-15px;margin-right:-15px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);} +.nav-list>li>a{padding:3px 15px;} +.nav-list>.active>a,.nav-list>.active>a:hover{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.2);background-color:#0088cc;} +.nav-list [class^="icon-"]{margin-right:2px;} +.nav-list .divider{height:1px;margin:8px 1px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;*width:100%;*margin:-5px 0 5px;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;content:"";} +.nav-tabs:after,.nav-pills:after{clear:both;} +.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;} +.nav-tabs>li{margin-bottom:-1px;} +.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:18px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}.nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #dddddd;} +.nav-tabs>.active>a,.nav-tabs>.active>a:hover{color:#555555;background-color:#ffffff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover{color:#ffffff;background-color:#0088cc;} +.nav-stacked>li{float:none;} +.nav-stacked>li>a{margin-right:0;} +.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.nav-tabs.nav-stacked>li>a:hover{border-color:#ddd;z-index:2;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;} +.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu,.nav-pills .dropdown-menu{margin-top:1px;border-width:1px;} +.nav-pills .dropdown-menu{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.nav-tabs .dropdown-toggle .caret,.nav-pills .dropdown-toggle .caret{border-top-color:#0088cc;border-bottom-color:#0088cc;margin-top:6px;} +.nav-tabs .dropdown-toggle:hover .caret,.nav-pills .dropdown-toggle:hover .caret{border-top-color:#005580;border-bottom-color:#005580;} +.nav-tabs .active .dropdown-toggle .caret,.nav-pills .active .dropdown-toggle .caret{border-top-color:#333333;border-bottom-color:#333333;} +.nav>.dropdown.active>a:hover{color:#000000;cursor:pointer;} +.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>.open.active>a:hover{color:#ffffff;background-color:#999999;border-color:#999999;} +.nav .open .caret,.nav .open.active .caret,.nav .open a:hover .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover{border-color:#999999;} +.tabbable{*zoom:1;}.tabbable:before,.tabbable:after{display:table;content:"";} +.tabbable:after{clear:both;} +.tab-content{display:table;width:100%;} +.tabs-below .nav-tabs,.tabs-right .nav-tabs,.tabs-left .nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;} +.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below .nav-tabs{border-top:1px solid #ddd;} +.tabs-below .nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below .nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.tabs-below .nav-tabs>li>a:hover{border-bottom-color:transparent;border-top-color:#ddd;} +.tabs-below .nav-tabs .active>a,.tabs-below .nav-tabs .active>a:hover{border-color:transparent #ddd #ddd #ddd;} +.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;} +.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left .nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;} +.tabs-left .nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left .nav-tabs>li>a:hover{border-color:#eeeeee #dddddd #eeeeee #eeeeee;} +.tabs-left .nav-tabs .active>a,.tabs-left .nav-tabs .active>a:hover{border-color:#ddd transparent #ddd #ddd;*border-right-color:#ffffff;} +.tabs-right .nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;} +.tabs-right .nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right .nav-tabs>li>a:hover{border-color:#eeeeee #eeeeee #eeeeee #dddddd;} +.tabs-right .nav-tabs .active>a,.tabs-right .nav-tabs .active>a:hover{border-color:#ddd #ddd #ddd transparent;*border-left-color:#ffffff;} +.navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;} +.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);} +.navbar .container{width:auto;} +.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;} +.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;} +.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;} +.nav-collapse.collapse{height:auto;} +.navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;} +.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;} +.navbar .navbar-text{margin-bottom:0;line-height:40px;} +.navbar .btn,.navbar .btn-group{margin-top:5px;} +.navbar .btn-group .btn{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";} +.navbar-form:after{clear:both;} +.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} +.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;} +.navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;} +.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;} +.navbar-fixed-bottom{bottom:0;} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;} +.navbar .nav>li{display:block;float:left;} +.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);} +.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;} +.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;} +.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;} +.navbar .nav.pull-right{margin-left:10px;margin-right:0;} +.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;} +.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;} +.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;} +.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;} +.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;} +.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);} +.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;} +.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;} +.navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;} +.navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;} +.breadcrumb{padding:7px 14px;margin:0 0 18px;list-style:none;background-color:#fbfbfb;background-image:-moz-linear-gradient(top, #ffffff, #f5f5f5);background-image:-ms-linear-gradient(top, #ffffff, #f5f5f5);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));background-image:-webkit-linear-gradient(top, #ffffff, #f5f5f5);background-image:-o-linear-gradient(top, #ffffff, #f5f5f5);background-image:linear-gradient(top, #ffffff, #f5f5f5);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;}.breadcrumb li{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 0 #ffffff;} +.breadcrumb .divider{padding:0 5px;color:#999999;} +.breadcrumb .active a{color:#333333;} +.pagination{height:36px;margin:18px 0;} +.pagination ul{display:inline-block;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:0 1px 2px rgba(0, 0, 0, 0.05);} +.pagination li{display:inline;} +.pagination a{float:left;padding:0 14px;line-height:34px;text-decoration:none;border:1px solid #ddd;border-left-width:0;} +.pagination a:hover,.pagination .active a{background-color:#f5f5f5;} +.pagination .active a{color:#999999;cursor:default;} +.pagination .disabled span,.pagination .disabled a,.pagination .disabled a:hover{color:#999999;background-color:transparent;cursor:default;} +.pagination li:first-child a{border-left-width:1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;} +.pagination li:last-child a{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;} +.pagination-centered{text-align:center;} +.pagination-right{text-align:right;} +.pager{margin-left:0;margin-bottom:18px;list-style:none;text-align:center;*zoom:1;}.pager:before,.pager:after{display:table;content:"";} +.pager:after{clear:both;} +.pager li{display:inline;} +.pager a{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager a:hover{text-decoration:none;background-color:#f5f5f5;} +.pager .next a{float:right;} +.pager .previous a{float:left;} +.pager .disabled a,.pager .disabled a:hover{color:#999999;background-color:#fff;cursor:default;} +.modal-open .dropdown-menu{z-index:2050;} +.modal-open .dropdown.open{*z-index:2050;} +.modal-open .popover{z-index:2060;} +.modal-open .tooltip{z-index:2070;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;} +.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;} +.modal.fade.in{top:50%;} +.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;} +.modal-body{overflow-y:auto;max-height:400px;padding:15px;} +.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";} +.modal-footer:after{clear:both;} +.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;} +.modal-footer .btn-group .btn+.btn{margin-left:-1px;} +.tooltip{position:absolute;z-index:1020;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0);}.tooltip.in{opacity:0.8;filter:alpha(opacity=80);} +.tooltip.top{margin-top:-2px;} +.tooltip.right{margin-left:2px;} +.tooltip.bottom{margin-top:2px;} +.tooltip.left{margin-left:-2px;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} +.tooltip-inner{max-width:200px;padding:3px 8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;padding:5px;}.popover.top{margin-top:-5px;} +.popover.right{margin-left:5px;} +.popover.bottom{margin-top:5px;} +.popover.left{margin-left:-5px;} +.popover.top .arrow{bottom:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;} +.popover.right .arrow{top:50%;left:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid #000000;} +.popover.bottom .arrow{top:0;left:50%;margin-left:-5px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:5px solid #000000;} +.popover.left .arrow{top:50%;right:0;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #000000;} +.popover .arrow{position:absolute;width:0;height:0;} +.popover-inner{padding:3px;width:280px;overflow:hidden;background:#000000;background:rgba(0, 0, 0, 0.8);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);} +.popover-title{padding:9px 15px;line-height:1;background-color:#f5f5f5;border-bottom:1px solid #eee;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;} +.popover-content{padding:14px;background-color:#ffffff;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;content:"";} +.thumbnails:after{clear:both;} +.thumbnails>li{float:left;margin:0 0 18px 20px;} +.thumbnail{display:block;padding:4px;line-height:1;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:0 1px 1px rgba(0, 0, 0, 0.075);} +a.thumbnail:hover{border-color:#0088cc;-webkit-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);-moz-box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);box-shadow:0 1px 4px rgba(0, 105, 214, 0.25);} +.thumbnail>img{display:block;max-width:100%;margin-left:auto;margin-right:auto;} +.thumbnail .caption{padding:9px;} +.label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.label:hover{color:#ffffff;text-decoration:none;} +.label-important{background-color:#b94a48;} +.label-important:hover{background-color:#953b39;} +.label-warning{background-color:#f89406;} +.label-warning:hover{background-color:#c67605;} +.label-success{background-color:#468847;} +.label-success:hover{background-color:#356635;} +.label-info{background-color:#3a87ad;} +.label-info:hover{background-color:#2d6987;} +.label-inverse{background-color:#333333;} +.label-inverse:hover{background-color:#1a1a1a;} +.badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;} +.badge-error{background-color:#b94a48;} +.badge-error:hover{background-color:#953b39;} +.badge-warning{background-color:#f89406;} +.badge-warning:hover{background-color:#c67605;} +.badge-success{background-color:#468847;} +.badge-success:hover{background-color:#356635;} +.badge-info{background-color:#3a87ad;} +.badge-info:hover{background-color:#2d6987;} +.badge-inverse{background-color:#333333;} +.badge-inverse:hover{background-color:#1a1a1a;} +@-webkit-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-moz-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@-ms-keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}@keyframes progress-bar-stripes{from{background-position:0 0;} to{background-position:40px 0;}}.progress{overflow:hidden;height:18px;margin-bottom:18px;background-color:#f7f7f7;background-image:-moz-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-ms-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));background-image:-webkit-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:-o-linear-gradient(top, #f5f5f5, #f9f9f9);background-image:linear-gradient(top, #f5f5f5, #f9f9f9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.progress .bar{width:0%;height:18px;color:#ffffff;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top, #149bdf, #0480be);background-image:-ms-linear-gradient(top, #149bdf, #0480be);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));background-image:-webkit-linear-gradient(top, #149bdf, #0480be);background-image:-o-linear-gradient(top, #149bdf, #0480be);background-image:linear-gradient(top, #149bdf, #0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width 0.6s ease;-moz-transition:width 0.6s ease;-ms-transition:width 0.6s ease;-o-transition:width 0.6s ease;transition:width 0.6s ease;} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar{background-color:#dd514c;background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);} +.progress-danger.progress-striped .bar{background-color:#ee5f5b;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-success .bar{background-color:#5eb95e;background-image:-moz-linear-gradient(top, #62c462, #57a957);background-image:-ms-linear-gradient(top, #62c462, #57a957);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));background-image:-webkit-linear-gradient(top, #62c462, #57a957);background-image:-o-linear-gradient(top, #62c462, #57a957);background-image:linear-gradient(top, #62c462, #57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);} +.progress-success.progress-striped .bar{background-color:#62c462;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-info .bar{background-color:#4bb1cf;background-image:-moz-linear-gradient(top, #5bc0de, #339bb9);background-image:-ms-linear-gradient(top, #5bc0de, #339bb9);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));background-image:-webkit-linear-gradient(top, #5bc0de, #339bb9);background-image:-o-linear-gradient(top, #5bc0de, #339bb9);background-image:linear-gradient(top, #5bc0de, #339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);} +.progress-info.progress-striped .bar{background-color:#5bc0de;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.progress-warning .bar{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);} +.progress-warning.progress-striped .bar{background-color:#fbb450;background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);} +.accordion{margin-bottom:18px;} +.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;} +.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:18px;line-height:1;} +.carousel-inner{overflow:hidden;width:100%;position:relative;} +.carousel .item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;-moz-transition:0.6s ease-in-out left;-ms-transition:0.6s ease-in-out left;-o-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left;} +.carousel .item>img{display:block;line-height:1;} +.carousel .active,.carousel .next,.carousel .prev{display:block;} +.carousel .active{left:0;} +.carousel .next,.carousel .prev{position:absolute;top:0;width:100%;} +.carousel .next{left:100%;} +.carousel .prev{left:-100%;} +.carousel .next.left,.carousel .prev.right{left:0;} +.carousel .active.left{left:-100%;} +.carousel .active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#ffffff;text-align:center;background:#222222;border:3px solid #ffffff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:0.5;filter:alpha(opacity=50);}.carousel-control.right{left:auto;right:15px;} +.carousel-control:hover{color:#ffffff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90);} +.carousel-caption{position:absolute;left:0;right:0;bottom:0;padding:10px 15px 5px;background:#333333;background:rgba(0, 0, 0, 0.75);} +.carousel-caption h4,.carousel-caption p{color:#ffffff;} +.hero-unit{padding:60px;margin-bottom:30px;background-color:#eeeeee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;color:inherit;letter-spacing:-1px;} +.hero-unit p{font-size:18px;font-weight:200;line-height:27px;color:inherit;} +.pull-right{float:right;} +.pull-left{float:left;} +.hide{display:none;} +.show{display:block;} +.invisible{visibility:hidden;} diff --git a/api/resources/csses/font-awesome.css b/api/resources/csses/font-awesome.css new file mode 100644 index 00000000..4697599c --- /dev/null +++ b/api/resources/csses/font-awesome.css @@ -0,0 +1,303 @@ +/* Font Awesome + the iconic font designed for use with Twitter Bootstrap + ------------------------------------------------------- + The full suite of pictographic icons, examples, and documentation + can be found at: http://fortawesome.github.com/Font-Awesome/ + + License + ------------------------------------------------------- + The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0: + http://creativecommons.org/licenses/by/3.0/ A mention of + 'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable + source code is considered acceptable attribution (most common on the web). + If human readable source code is not available to the end user, a mention in + an 'About' or 'Credits' screen is considered acceptable (most common in desktop + or mobile software). + + Contact + ------------------------------------------------------- + Email: dave@davegandy.com + Twitter: http://twitter.com/fortaweso_me + Work: http://lemonwi.se co-founder + + */ +@font-face { + font-family: "FontAwesome"; + src: url('../font/fontawesome-webfont.eot'); + src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg'); + font-weight: normal; + font-style: normal; +} + +/* Font Awesome styles + ------------------------------------------------------- */ +[class^="icon-"]:before, [class*=" icon-"]:before { + font-family: FontAwesome; + font-weight: normal; + font-style: normal; + display: inline-block; + text-decoration: inherit; +} +a [class^="icon-"], a [class*=" icon-"] { + display: inline-block; + text-decoration: inherit; +} +/* makes the font 33% larger relative to the icon container */ +.icon-large:before { + vertical-align: top; + font-size: 1.3333333333333333em; +} +.btn [class^="icon-"], .btn [class*=" icon-"] { + /* keeps button heights with and without icons the same */ + + line-height: .9em; +} +li [class^="icon-"], li [class*=" icon-"] { + display: inline-block; + width: 1.25em; + text-align: center; +} +li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] { + /* 1.5 increased font size for icon-large * 1.25 width */ + + width: 1.875em; +} +li[class^="icon-"], li[class*=" icon-"] { + margin-left: 0; + list-style-type: none; +} +li[class^="icon-"]:before, li[class*=" icon-"]:before { + text-indent: -2em; + text-align: center; +} +li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before { + text-indent: -1.3333333333333333em; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { content: "\f000"; } +.icon-music:before { content: "\f001"; } +.icon-search:before { content: "\f002"; } +.icon-envelope:before { content: "\f003"; } +.icon-heart:before { content: "\f004"; } +.icon-star:before { content: "\f005"; } +.icon-star-empty:before { content: "\f006"; } +.icon-user:before { content: "\f007"; } +.icon-film:before { content: "\f008"; } +.icon-th-large:before { content: "\f009"; } +.icon-th:before { content: "\f00a"; } +.icon-th-list:before { content: "\f00b"; } +.icon-ok:before { content: "\f00c"; } +.icon-remove:before { content: "\f00d"; } +.icon-zoom-in:before { content: "\f00e"; } + +.icon-zoom-out:before { content: "\f010"; } +.icon-off:before { content: "\f011"; } +.icon-signal:before { content: "\f012"; } +.icon-cog:before { content: "\f013"; } +.icon-trash:before { content: "\f014"; } +.icon-home:before { content: "\f015"; } +.icon-file:before { content: "\f016"; } +.icon-time:before { content: "\f017"; } +.icon-road:before { content: "\f018"; } +.icon-download-alt:before { content: "\f019"; } +.icon-download:before { content: "\f01a"; } +.icon-upload:before { content: "\f01b"; } +.icon-inbox:before { content: "\f01c"; } +.icon-play-circle:before { content: "\f01d"; } +.icon-repeat:before { content: "\f01e"; } + +/* \f020 doesn't work in Safari. all shifted one down */ +.icon-refresh:before { content: "\f021"; } +.icon-list-alt:before { content: "\f022"; } +.icon-lock:before { content: "\f023"; } +.icon-flag:before { content: "\f024"; } +.icon-headphones:before { content: "\f025"; } +.icon-volume-off:before { content: "\f026"; } +.icon-volume-down:before { content: "\f027"; } +.icon-volume-up:before { content: "\f028"; } +.icon-qrcode:before { content: "\f029"; } +.icon-barcode:before { content: "\f02a"; } +.icon-tag:before { content: "\f02b"; } +.icon-tags:before { content: "\f02c"; } +.icon-book:before { content: "\f02d"; } +.icon-bookmark:before { content: "\f02e"; } +.icon-print:before { content: "\f02f"; } + +.icon-camera:before { content: "\f030"; } +.icon-font:before { content: "\f031"; } +.icon-bold:before { content: "\f032"; } +.icon-italic:before { content: "\f033"; } +.icon-text-height:before { content: "\f034"; } +.icon-text-width:before { content: "\f035"; } +.icon-align-left:before { content: "\f036"; } +.icon-align-center:before { content: "\f037"; } +.icon-align-right:before { content: "\f038"; } +.icon-align-justify:before { content: "\f039"; } +.icon-list:before { content: "\f03a"; } +.icon-indent-left:before { content: "\f03b"; } +.icon-indent-right:before { content: "\f03c"; } +.icon-facetime-video:before { content: "\f03d"; } +.icon-picture:before { content: "\f03e"; } + +.icon-pencil:before { content: "\f040"; } +.icon-map-marker:before { content: "\f041"; } +.icon-adjust:before { content: "\f042"; } +.icon-tint:before { content: "\f043"; } +.icon-edit:before { content: "\f044"; } +.icon-share:before { content: "\f045"; } +.icon-check:before { content: "\f046"; } +.icon-move:before { content: "\f047"; } +.icon-step-backward:before { content: "\f048"; } +.icon-fast-backward:before { content: "\f049"; } +.icon-backward:before { content: "\f04a"; } +.icon-play:before { content: "\f04b"; } +.icon-pause:before { content: "\f04c"; } +.icon-stop:before { content: "\f04d"; } +.icon-forward:before { content: "\f04e"; } + +.icon-fast-forward:before { content: "\f050"; } +.icon-step-forward:before { content: "\f051"; } +.icon-eject:before { content: "\f052"; } +.icon-chevron-left:before { content: "\f053"; } +.icon-chevron-right:before { content: "\f054"; } +.icon-plus-sign:before { content: "\f055"; } +.icon-minus-sign:before { content: "\f056"; } +.icon-remove-sign:before { content: "\f057"; } +.icon-ok-sign:before { content: "\f058"; } +.icon-question-sign:before { content: "\f059"; } +.icon-info-sign:before { content: "\f05a"; } +.icon-screenshot:before { content: "\f05b"; } +.icon-remove-circle:before { content: "\f05c"; } +.icon-ok-circle:before { content: "\f05d"; } +.icon-ban-circle:before { content: "\f05e"; } + +.icon-arrow-left:before { content: "\f060"; } +.icon-arrow-right:before { content: "\f061"; } +.icon-arrow-up:before { content: "\f062"; } +.icon-arrow-down:before { content: "\f063"; } +.icon-share-alt:before { content: "\f064"; } +.icon-resize-full:before { content: "\f065"; } +.icon-resize-small:before { content: "\f066"; } +.icon-plus:before { content: "\f067"; } +.icon-minus:before { content: "\f068"; } +.icon-asterisk:before { content: "\f069"; } +.icon-exclamation-sign:before { content: "\f06a"; } +.icon-gift:before { content: "\f06b"; } +.icon-leaf:before { content: "\f06c"; } +.icon-fire:before { content: "\f06d"; } +.icon-eye-open:before { content: "\f06e"; } + +.icon-eye-close:before { content: "\f070"; } +.icon-warning-sign:before { content: "\f071"; } +.icon-plane:before { content: "\f072"; } +.icon-calendar:before { content: "\f073"; } +.icon-random:before { content: "\f074"; } +.icon-comment:before { content: "\f075"; } +.icon-magnet:before { content: "\f076"; } +.icon-chevron-up:before { content: "\f077"; } +.icon-chevron-down:before { content: "\f078"; } +.icon-retweet:before { content: "\f079"; } +.icon-shopping-cart:before { content: "\f07a"; } +.icon-folder-close:before { content: "\f07b"; } +.icon-folder-open:before { content: "\f07c"; } +.icon-resize-vertical:before { content: "\f07d"; } +.icon-resize-horizontal:before { content: "\f07e"; } + +.icon-bar-chart:before { content: "\f080"; } +.icon-twitter-sign:before { content: "\f081"; } +.icon-facebook-sign:before { content: "\f082"; } +.icon-camera-retro:before { content: "\f083"; } +.icon-key:before { content: "\f084"; } +.icon-cogs:before { content: "\f085"; } +.icon-comments:before { content: "\f086"; } +.icon-thumbs-up:before { content: "\f087"; } +.icon-thumbs-down:before { content: "\f088"; } +.icon-star-half:before { content: "\f089"; } +.icon-heart-empty:before { content: "\f08a"; } +.icon-signout:before { content: "\f08b"; } +.icon-linkedin-sign:before { content: "\f08c"; } +.icon-pushpin:before { content: "\f08d"; } +.icon-external-link:before { content: "\f08e"; } + +.icon-signin:before { content: "\f090"; } +.icon-trophy:before { content: "\f091"; } +.icon-github-sign:before { content: "\f092"; } +.icon-upload-alt:before { content: "\f093"; } +.icon-lemon:before { content: "\f094"; } +.icon-phone:before { content: "\f095"; } +.icon-check-empty:before { content: "\f096"; } +.icon-bookmark-empty:before { content: "\f097"; } +.icon-phone-sign:before { content: "\f098"; } +.icon-twitter:before { content: "\f099"; } +.icon-facebook:before { content: "\f09a"; } +.icon-github:before { content: "\f09b"; } +.icon-unlock:before { content: "\f09c"; } +.icon-credit-card:before { content: "\f09d"; } +.icon-rss:before { content: "\f09e"; } + +.icon-hdd:before { content: "\f0a0"; } +.icon-bullhorn:before { content: "\f0a1"; } +.icon-bell:before { content: "\f0a2"; } +.icon-certificate:before { content: "\f0a3"; } +.icon-hand-right:before { content: "\f0a4"; } +.icon-hand-left:before { content: "\f0a5"; } +.icon-hand-up:before { content: "\f0a6"; } +.icon-hand-down:before { content: "\f0a7"; } +.icon-circle-arrow-left:before { content: "\f0a8"; } +.icon-circle-arrow-right:before { content: "\f0a9"; } +.icon-circle-arrow-up:before { content: "\f0aa"; } +.icon-circle-arrow-down:before { content: "\f0ab"; } +.icon-globe:before { content: "\f0ac"; } +.icon-wrench:before { content: "\f0ad"; } +.icon-tasks:before { content: "\f0ae"; } + +.icon-filter:before { content: "\f0b0"; } +.icon-briefcase:before { content: "\f0b1"; } +.icon-fullscreen:before { content: "\f0b2"; } + +.icon-group:before { content: "\f0c0"; } +.icon-link:before { content: "\f0c1"; } +.icon-cloud:before { content: "\f0c2"; } +.icon-beaker:before { content: "\f0c3"; } +.icon-cut:before { content: "\f0c4"; } +.icon-copy:before { content: "\f0c5"; } +.icon-paper-clip:before { content: "\f0c6"; } +.icon-save:before { content: "\f0c7"; } +.icon-sign-blank:before { content: "\f0c8"; } +.icon-reorder:before { content: "\f0c9"; } +.icon-list-ul:before { content: "\f0ca"; } +.icon-list-ol:before { content: "\f0cb"; } +.icon-strikethrough:before { content: "\f0cc"; } +.icon-underline:before { content: "\f0cd"; } +.icon-table:before { content: "\f0ce"; } + +.icon-magic:before { content: "\f0d0"; } +.icon-truck:before { content: "\f0d1"; } +.icon-pinterest:before { content: "\f0d2"; } +.icon-pinterest-sign:before { content: "\f0d3"; } +.icon-google-plus-sign:before { content: "\f0d4"; } +.icon-google-plus:before { content: "\f0d5"; } +.icon-money:before { content: "\f0d6"; } +.icon-caret-down:before { content: "\f0d7"; } +.icon-caret-up:before { content: "\f0d8"; } +.icon-caret-left:before { content: "\f0d9"; } +.icon-caret-right:before { content: "\f0da"; } +.icon-columns:before { content: "\f0db"; } +.icon-sort:before { content: "\f0dc"; } +.icon-sort-down:before { content: "\f0dd"; } +.icon-sort-up:before { content: "\f0de"; } + +.icon-envelope-alt:before { content: "\f0e0"; } +.icon-linkedin:before { content: "\f0e1"; } +.icon-undo:before { content: "\f0e2"; } +.icon-legal:before { content: "\f0e3"; } +.icon-dashboard:before { content: "\f0e4"; } +.icon-comment-alt:before { content: "\f0e5"; } +.icon-comments-alt:before { content: "\f0e6"; } +.icon-bolt:before { content: "\f0e7"; } +.icon-sitemap:before { content: "\f0e8"; } +.icon-umbrella:before { content: "\f0e9"; } +.icon-paste:before { content: "\f0ea"; } + +.icon-user-md:before { content: "\f200"; } diff --git a/api/resources/font/fontawesome-webfont.eot b/api/resources/font/fontawesome-webfont.eot new file mode 100644 index 0000000000000000000000000000000000000000..89070c1e63c2703b2334023922ecc1664f759b55 GIT binary patch literal 38708 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/api/resources/font/fontawesome-webfont.ttf b/api/resources/font/fontawesome-webfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c17e9f8d100d01a002029b5b93cc081062618bf3 GIT binary patch literal 68476 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 literal 0 HcmV?d00001 diff --git a/api/resources/images/Ace_ERD.svg b/api/resources/images/Ace_ERD.svg new file mode 100644 index 00000000..ba386287 --- /dev/null +++ b/api/resources/images/Ace_ERD.svg @@ -0,0 +1,4 @@ + + + + diff --git a/api/resources/images/ace_logo.png b/api/resources/images/ace_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..4dab4f66ebffb0816dc8968ea52f64773970bedb GIT binary patch literal 42538 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 PelKaN>Z(*J*+l#o=FgAV literal 0 HcmV?d00001 diff --git a/api/resources/images/c9-sponsor.png b/api/resources/images/c9-sponsor.png new file mode 100644 index 0000000000000000000000000000000000000000..599d3b49b07be4610d0ce3c808b47c7218eb2257 GIT binary patch literal 12244 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",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,unknownElems:!!a.getElementsByTagName("nav").length,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",enctype:!!c.createElement("form").enctype,submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.lastChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},m&&f.extend(p,{position:"absolute",left:"-999px",top:"-999px"});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
                                                                                                                                                                                                                                                                                                                                                                                                                                                              t
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;f(function(){var a,b,d,e,g,h,i=1,j="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",l="visibility:hidden;border:0;",n="style='"+j+"border:5px solid #000;padding:0;'",p="
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "+""+"
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ";m=c.getElementsByTagName("body")[0];!m||(a=c.createElement("div"),a.style.cssText=l+"width:0;height:0;position:static;top:0;margin-top:"+i+"px",m.insertBefore(a,m.firstChild),o=c.createElement("div"),o.style.cssText=j+l,o.innerHTML=p,a.appendChild(o),b=o.firstChild,d=b.firstChild,g=b.nextSibling.firstChild.firstChild,h={doesNotAddBorder:d.offsetTop!==5,doesAddBorderForTableAndCells:g.offsetTop===5},d.style.position="fixed",d.style.top="20px",h.fixedPosition=d.offsetTop===20||d.offsetTop===15,d.style.position=d.style.top="",b.style.overflow="hidden",b.style.position="relative",h.subtractsBorderForOverflowNotVisible=d.offsetTop===-5,h.doesNotIncludeMarginInBodyOffset=m.offsetTop!==i,m.removeChild(a),o=a=null,f.extend(k,h))}),o.innerHTML="",n.removeChild(o),o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[f.expando]:a[f.expando]&&f.expando,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[f.expando]=n=++f.uuid:n=f.expando),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[f.expando]:f.expando;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)?b=b:b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" "));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];if(!arguments.length){if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}return b}e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!a||j===3||j===8||j===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g},removeAttr:function(a,b){var c,d,e,g,h=0;if(a.nodeType===1){d=(b||"").split(p),g=d.length;for(;h=0}})});var z=/\.(.*)$/,A=/^(?:textarea|input|select)$/i,B=/\./g,C=/ /g,D=/[^\w\s.|`]/g,E=/^([^\.]*)?(?:\.(.+))?$/,F=/\bhover(\.\S+)?/,G=/^key/,H=/^(?:mouse|contextmenu)|click/,I=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,J=function(a){var b=I.exec(a);b&& +(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},K=function(a,b){return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||a.id===b[2])&&(!b[3]||b[3].test(a.className))},L=function(a){return f.event.special.hover?a:a.replace(F,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=L(c).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"",(g||!e)&&c.preventDefault();if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,n=null;for(m=e.parentNode;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l=0:t===b&&(t=o[s]=r.quick?K(m,r.quick):f(m).is(s)),t&&q.push(r);q.length&&j.push({elem:m,matches:q})}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),G.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),H.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var Y="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",Z=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,_=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,ba=/<([\w:]+)/,bb=/",""],legend:[1,"
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "],thead:[1,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "],tr:[2,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "],td:[3,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "],col:[2,"","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "],area:[1,"",""],_default:[0,"",""]},bk=X(c);bj.optgroup=bj.option,bj.tbody=bj.tfoot=bj.colgroup=bj.caption=bj.thead,bj.th=bj.td,f.support.htmlSerialize||(bj._default=[1,"div
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ","
                                                                                                                                                                                                                                                                                                                                                                                                                                                              "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after" +,arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Z,""):null;if(typeof a=="string"&&!bd.test(a)&&(f.support.leadingWhitespace||!$.test(a))&&!bj[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(_,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bn(a,d),e=bo(a),g=bo(d);for(h=0;e[h];++h)g[h]&&bn(e[h],g[h])}if(b){bm(a,d);if(c){e=bo(a),g=bo(d);for(h=0;e[h];++h)bm(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!bc.test(k))k=b.createTextNode(k);else{k=k.replace(_,"<$1>");var l=(ba.exec(k)||["",""])[1].toLowerCase(),m=bj[l]||bj._default,n=m[0],o=b.createElement("div");b===c?bk.appendChild(o):X(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=bb.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&$.test(k)&&o.insertBefore(b.createTextNode($.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bt.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bs,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bs.test(g)?g.replace(bs,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bB(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bC=function(a,c){var d,e,g;c=c.replace(bu,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bD=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bv.test(f)&&bw.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bB=bC||bD,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bF=/%20/g,bG=/\[\]$/,bH=/\r?\n/g,bI=/#.*$/,bJ=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bK=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bL=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bM=/^(?:GET|HEAD)$/,bN=/^\/\//,bO=/\?/,bP=/)<[^<]*)*<\/script>/gi,bQ=/^(?:select|textarea)/i,bR=/\s+/,bS=/([?&])_=[^&]*/,bT=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bU=f.fn.load,bV={},bW={},bX,bY,bZ=["*/"]+["*"];try{bX=e.href}catch(b$){bX=c.createElement("a"),bX.href="",bX=bX.href}bY=bT.exec(bX.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bU)return bU.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ").append(c.replace(bP,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bQ.test(this.nodeName)||bK.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bH,"\r\n")}}):{name:b.name,value:c.replace(bH,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?cb(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),cb(a,b);return a},ajaxSettings:{url:bX,isLocal:bL.test(bY[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bZ},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:b_(bV),ajaxTransport:b_(bW),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cd(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=ce(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bJ.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bI,"").replace(bN,bY[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bR),d.crossDomain==null&&(r=bT.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bY[1]&&r[2]==bY[2]&&(r[3]||(r[1]==="http:"?80:443))==(bY[3]||(bY[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),ca(bV,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bM.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bO.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bS,"$1_="+x);d.url=y+(y===d.url?(bO.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bZ+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=ca(bW,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){s<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)cc(g,a[g],c,e);return d.join("&").replace(bF,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cf=f.now(),cg=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cf++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cg.test(b.url)||e&&cg.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cg,l),b.url===j&&(e&&(k=k.replace(cg,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ch=a.ActiveXObject?function(){for(var a in cj)cj[a](0,1)}:!1,ci=0,cj;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ck()||cl()}:ck,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ch&&delete cj[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++ci,ch&&(cj||(cj={},f(a).unload(ch)),cj[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cm={},cn,co,cp=/^(?:toggle|show|hide)$/,cq=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cr,cs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],ct;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cw("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cz.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cz.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cA(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cA(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window); \ No newline at end of file diff --git a/api/resources/javascripts/plugins.js b/api/resources/javascripts/plugins.js new file mode 100644 index 00000000..efda459c --- /dev/null +++ b/api/resources/javascripts/plugins.js @@ -0,0 +1,13 @@ +window.log=function(){log.history=log.history||[];log.history.push(arguments);if(this.console){arguments.callee=arguments.callee.caller;var a=[].slice.call(arguments);(typeof console.log==="object"?log.apply.call(console.log,console,a):console.log.apply(console,a))}}; +(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,timeStamp,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();){b[a]=b[a]||c}})((function(){try +{console.log();return window.console;}catch(err){return window.console={};}})()); + +/* + * jQuery throttle / debounce - v1.1 - 3/7/2010 + * http://benalman.com/projects/jquery-throttle-debounce-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function(b,c){var $=b.jQuery||b.Cowboy||(b.Cowboy={}),a;$.throttle=a=function(e,f,j,i){var h,d=0;if(typeof f!=="boolean"){i=j;j=f;f=c}function g(){var o=this,m=+new Date()-d,n=arguments;function l(){d=+new Date();j.apply(o,n)}function k(){h=c}if(i&&!h){l()}h&&clearTimeout(h);if(i===c&&m>e){l()}else{if(f!==true){h=setTimeout(i?k:l,i===c?e-m:e)}}}if($.guid){g.guid=j.guid=j.guid||$.guid++}return g};$.debounce=function(d,e,f){return f===c?a(d,e,false):a(d,f,e!==false)}})(this); diff --git a/api/resources/javascripts/prettify-extension.js b/api/resources/javascripts/prettify-extension.js new file mode 100644 index 00000000..ca8458dc --- /dev/null +++ b/api/resources/javascripts/prettify-extension.js @@ -0,0 +1,24 @@ +// Stolen from StackOverflow. Find all
                                                                                                                                                                                                                                                                                                                                                                                                                                                               
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +// elements on the page and add the "prettyprint" style. If at least one 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +// prettyprint element was found, call the Google Prettify prettyPrint() API.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +//http://sstatic.net/so/js/master.js?v=6523
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +function styleCode() 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +{
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (typeof disableStyleCode != "undefined") 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        return;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    var a = false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    $("pre code").parent().each(function() 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        if (!$(this).hasClass("prettyprint")) 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            $(this).addClass("prettyprint");
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            a = true
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (a) { prettyPrint() } 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +}
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file
                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/api/resources/javascripts/prettify.js b/api/resources/javascripts/prettify.js
                                                                                                                                                                                                                                                                                                                                                                                                                                                              new file mode 100644
                                                                                                                                                                                                                                                                                                                                                                                                                                                              index 00000000..eef5ad7e
                                                                                                                                                                                                                                                                                                                                                                                                                                                              --- /dev/null
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +++ b/api/resources/javascripts/prettify.js
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -0,0 +1,28 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;ci[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +l=[],p={},d=0,g=e.length;d=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p=0){var k=k.match(g),f,b;if(b=
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p 1010) sx = 1010 - document.documentElement.offsetWidth;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    else sx = 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    $('.members').each(function (i) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var $classContent = $(this).closest('.classContent');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        $(this).scrollspy({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            min: $classContent.position().top + 5,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            max: $classContent.position().top + $classContent.height() - 35,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            onEnter: function (element, position) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $pagination = $(element);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $paginationContent = $('.membersContent pos' + i);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $tabs = $('.tabs pos' + i);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $paginationContent.css('left', -1 * sx);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $paginationContent.css('top', 0);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $pagination.addClass('shadow').stop().css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    height: 31
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                }).closest('.classContent').addClass('srolled');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $tabs.addClass('tabsSansBorder');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            },
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            onLeave: function (element, position) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $pagination = $(element);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $paginationContent = $('.membersContent pos' + i);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                var $tabs = $('.tabs pos' + i);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $paginationContent.stop().css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    top: 11
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                }); 
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $pagination.css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    'position': 'absolute',
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    'top': 193
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $pagination.stop().removeClass('shadow').css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    height: 42
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                $paginationContent.css('left', 0);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +               // setTimeout(function () {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    $paginationContent.css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                        'top': ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    $pagination.css({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                        'position': '',
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                        'top': ''
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    $paginationContent.css('left', 0);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    $pagination.closest('.classContent').removeClass('srolled')
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +                    $tabs.removeClass('tabsSansBorder');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +               // }, 300);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    $('span.methodClicker, article.article, i.methodClicker').each(function () {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var a = $(this);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var constructorPos = a.attr("id").indexOf("new ");
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var objName = a.attr("id");
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        if (constructorPos >= 0) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            objName = objName.substring(constructorPos + 4);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            objName += ".new";
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        a.attr("id", objName);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    function showMethodContent() {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var locationHash = location.hash.replace(/^#/, '').replace(/\./g, '\\.');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var equalsPos = location.hash.indexOf("=");
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        if (equalsPos >=0) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            locationHash = locationHash.substring(0, location.hash.indexOf("="));
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var $clickerEl = $('span#' + locationHash);
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        if ($clickerEl.length > 0 && $clickerEl.hasClass('methodClicker')) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            var p = $clickerEl.parent();
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            p[0].force = true;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            p.trigger('click');
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            p[0].force = false;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (location.hash.indexOf("section") >= 1) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        showMethodContent();
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        var data = location.hash;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        scrollTo(null, data.substr(1));
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    window.onhashchange = function () {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        showMethodContent();
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +};
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +function scrollTo(el, data) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (!data) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        data = el.getAttribute("data-id");
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        //location.hash = data;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    var el = $("span#" + data.replace(/\./g, "\\."))[0];
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (!el) return;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    var article = $(el).closest('.article')[0];
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    var top = article.offsetTop - 100;
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    if (document.body.scrollTop > top || document.body.scrollTop != top && document.body.scrollTop + (window.innerHeight || document.documentElement.offsetHeight) < top + article.offsetHeight) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        $('body').animate({
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            scrollTop: top
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        }, {
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            duration: 200,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +            easing: "swing"
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +        });
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +}
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file
                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/api/scrollbar.html b/api/scrollbar.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                              new file mode 100644
                                                                                                                                                                                                                                                                                                                                                                                                                                                              index 00000000..f656fc49
                                                                                                                                                                                                                                                                                                                                                                                                                                                              --- /dev/null
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +++ b/api/scrollbar.html
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -0,0 +1,264 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ScrollBar [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              A set of methods for setting and retrieving the editor's scrollbar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new ScrollBar. parent is the owner of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new ScrollBar. parent is the owner of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              parentDOMElement

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A DOM element

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • ScrollBar.on("scroll", function(Object e))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll bar, well, scrolls.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the scroll bar, well, scrolls.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              eObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Contains one property, "data", which indicates the current scroll top position

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • ScrollBar.getWidth +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the width of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the width of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • ScrollBar.setHeight(Number height)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              heightNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new height

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • ScrollBar.setInnerHeight(Number height)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the inner height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the inner height of the scroll bar, in pixels.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              heightNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new inner height

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • ScrollBar.setScrollTop(Number scrollTop)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the scroll top of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the scroll top of the scroll bar.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollTopNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new scroll top

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + \ No newline at end of file diff --git a/api/search.html b/api/search.html new file mode 100644 index 00000000..2bfeaa9c --- /dev/null +++ b/api/search.html @@ -0,0 +1,294 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Search [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              A class designed to handle all sorts of text searches within a Document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • new Search
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Search object. The following search options are avaliable:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Search object. The following search options are avaliable:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • needle: The string or regular expression you're looking for
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • backwards: Whether to search backwards from where cursor currently is. Defaults to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • wrap: Whether to wrap the search back to the beginning when it hits the end. Defaults to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • caseSensitive: Whether the search ought to be case-sensitive. Defaults to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • wholeWord: Whether the search matches only on whole words. Defaults to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • range: The Range to search within. Set this to null for the whole document
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • regExp: Whether the search is a regular expression or not. Defaults to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • start: The starting Range or cursor position to begin the search
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • skipCurrent: Whether or not to include the current line in the search. Default to false.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for options.needle. If found, this method returns the Range where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for options.needle. If found, this method returns the Range where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The session to search with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for all occurances options.needle. If found, this method returns an array of Ranges where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for all occurances options.needle. If found, this method returns an array of Ranges where the text first occurs. If options.backwards is true, the search goes backwards in the session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The session to search with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Search.getOptions +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing all the search options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing all the search options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for options.needle in input, and, if found, replaces it with replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Searches for options.needle in input, and, if found, replaces it with replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The text to search in

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The replacing text

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • (String): If options.regExp is true, this function returns input with the replacement already made. Otherwise, this function just returns replacement.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +If options.needle was not found, this function returns null.
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Chainable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the search options via the options parameter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the search options via the options parameter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing all the new search properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/selection.html b/api/selection.html new file mode 100644 index 00000000..663c2c37 --- /dev/null +++ b/api/selection.html @@ -0,0 +1,1495 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Contains the cursor position and the text selection of an edit session.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Selection object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new Selection object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The session to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Events

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.on("changeCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the cursor position changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the cursor position changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.on("changeSelection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the cursor selection changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emitted when the cursor selection changes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.clearSelection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Empties the selection (by de-selecting it). This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.getCursor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gets the current position of the cursor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.getRange +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the Range for the selected text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.getSelectionAnchor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the row and column of the calling selection anchor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the row and column of the calling selection anchor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.getSelectionLead +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the row and column of the calling selection lead.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the row and column of the calling selection lead.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to highlight the entire word.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to highlight the entire word.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.isBackwards +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is going backwards in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is going backwards in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.isEmpty +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is empty.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is empty.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.isMultiLine +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is a multi-line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the selection is a multi-line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to position indicated by the parameters. Negative numbers move the cursor backwards in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowsNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of rows to move by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              charsNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of characters to move by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorDown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorFileEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorFileStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor left one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor left one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLineEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the end of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLineStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the start of the line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLongWordLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word on the left.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word on the left.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorLongWordRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the word on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor right one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor right one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the row and column provided. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the row and column provided. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to move to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to move to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              keepDesiredColumnBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, the cursor move does not respect the previous column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorToPosition(Object position)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the position indicated by its row and column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the position indicated by its row and column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              positionObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to move to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the screen position indicated by row and column. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor to the screen position indicated by row and column. If preventUpdateDesiredColumn is true, then the cursor stays in the same column position as its original point.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to move to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to move to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              keepDesiredColumnBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, the cursor move does not respect the previous column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.moveCursorUp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the cursor up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectAll
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects all the text in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects all the text in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectAWord
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects a word, including its right whitespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectDown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection down one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectFileEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the end of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the end of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectFileStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the start of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the start of the file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection left one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection left one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectLine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the entire line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects the entire line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectLineEnd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the end of the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the end of the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectLineStart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the beginning of the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the beginning of the current line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection right one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection right one column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the indicated row and column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the indicated row and column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to select to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to select to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectToPosition(Object pos)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the row and column indicated by pos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection cursor to the row and column indicated by pos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              posObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An object containing the row and column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectUp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection up one row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectWord
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects an entire word boundary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Selects an entire word boundary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectWordLeft
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the first word on the left.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the first word on the left.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.selectWordRight
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the first word on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Moves the selection to the first word on the right.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.setSelectionAnchor(Number row, Number column)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the row and column position of the anchor. This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the row and column position of the anchor. This function also emits the 'changeSelection' event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new row

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.setSelectionRange(Range range, Boolean reverse)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the selection to the provided range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the selection to the provided range.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rangeRange

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The range of text to select

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              reverseBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Indicates if the range should go backwards (true) or not

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Selection.shiftSelection(Number columns)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the selection up (or down, if isBackwards() is true) the given number of columns.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shifts the selection up (or down, if isBackwards() is true) the given number of columns.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnsNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The number of columns to shift by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/split.html b/api/split.html new file mode 100644 index 00000000..3ea074d7 --- /dev/null +++ b/api/split.html @@ -0,0 +1,560 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Split [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.blur
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.focus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              callbackFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A callback function to execute

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              scopeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The default scope for the callback

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Executes callback on all of the available editors.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.getCurrentEditor +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.getEditor(Number idx)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              idxNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The index of the editor you want

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the editor identified by the index idx.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.getOrientation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the orientation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the orientation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.getSplits +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of splits.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the number of splits.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.resize
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Split.resize() -> Void

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Split.resize() -> Void

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Resizes the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.setFontSize(Number size)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sizeNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new font size

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the font size, in pixels, for all the available editors.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.setKeyboardHandler(String keybinding)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              keybindingString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Sets the keyboard handler for the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.setOrientation(Number orientation)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              orientationNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new orientation value

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the orientation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The new edit session

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              idxNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The editor's index you're interested in

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new EditSession for the indicated editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Split.setTheme(String theme)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              themeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The name of the theme to set

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a theme for each of the available editors.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/token_iterator.html b/api/token_iterator.html new file mode 100644 index 00000000..248dcf61 --- /dev/null +++ b/api/token_iterator.html @@ -0,0 +1,262 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              TokenIterator [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              This class provides an essay way to treat the document as a stream of tokens, and provides methods to iterate over these tokens.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Creates a new token iterator object. The inital token index is set to the provided row and column coordinates.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionEditSession

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The session to associate with

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              initialRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The row to start the tokenizing at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              initialColumnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The column to start the tokenizing at

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.getCurrentToken +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current tokenized string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current tokenized string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.getCurrentTokenColumn +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current column.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.getCurrentTokenRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the current row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.stepBackward
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizes all the items from the current point to the row prior in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizes all the items from the current point to the row prior in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • TokenIterator.stepForward +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns null. Otherwise, it returns the tokenized string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizes all the items from the current point until the next row in the document. If the current point is at the end of the file, this function returns null. Otherwise, it returns the tokenized string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/tokenizer.html b/api/tokenizer.html new file mode 100644 index 00000000..e4cd349d --- /dev/null +++ b/api/tokenizer.html @@ -0,0 +1,136 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Tokenizer [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructs a new tokenizer based on the given rules and flags.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructs a new tokenizer based on the given rules and flags.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rulesObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The highlighting rules

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              flagString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Any additional regular expression flags to pass (like "i" for case insensitive)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing two properties: tokens, which contains all the tokens; and state, the current state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing two properties: tokens, which contains all the tokens; and state, the current state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              startStateObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/undomanager.html b/api/undomanager.html new file mode 100644 index 00000000..89e9f868 --- /dev/null +++ b/api/undomanager.html @@ -0,0 +1,289 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              UndoManager [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              This object maintains the undo stack for an EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • new UndoManager
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Resets the current undo state and creates a new UndoManager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Resets the current undo state and creates a new UndoManager.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • UndoManager.execute(Object options)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Provides a means for implementing your own undo manager. options has one property, args, an Array, with two elements:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Provides a means for implementing your own undo manager. options has one property, args, an Array, with two elements:

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • args[0] is an array of deltas
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • args[1] is the document to associate with
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              optionsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Contains additional properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • UndoManager.hasRedo +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if there are redo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if there are redo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • UndoManager.hasUndo +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if there are undo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if there are undo operations left to perform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • UndoManager.redo(Boolean dontSelect)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform a redo operation on the document, reimplementing the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • UndoManager.reset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Destroys the stack of undo and redo redo operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Destroys the stack of undo and redo redo operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform an undo operation on the document, reverting the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Perform an undo operation on the document, reverting the last change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              dontSelectBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, doesn't select the range of where the change occured

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file diff --git a/api/virtual_renderer.html b/api/virtual_renderer.html new file mode 100644 index 00000000..ef804c28 --- /dev/null +++ b/api/virtual_renderer.html @@ -0,0 +1,2030 @@ + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              VirtualRenderer [edit] +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The class that is responsible for drawing everything you see on the screen!

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructors

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructs a new VirtualRenderer within the container specified, applying the given theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Constructs a new VirtualRenderer within the container specified, applying the given theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              containerDOMElement

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The root element of the editor

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              themeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The starting theme

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.addGutterDecoration(Object row, Object className)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              classNameObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.adjustWrapLimit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Adjusts the wrap limit, which is the number of characters that can fit within the width of the edit area on screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.destroy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Destroys the text and cursor layers for this renderer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Destroys the text and cursor layers for this renderer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getAnimatedScroll +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether an animated scroll happens or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether an animated scroll happens or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getContainerElement +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the root element containing this renderer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the root element containing this renderer.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getFirstFullyVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getFirstVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the first visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getHScrollBarAlwaysVisible +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the horizontal scrollbar is set to be always visible.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the horizontal scrollbar is set to be always visible.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getLastFullyVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last fully visible row. "Fully" here means that the characters in the row are not truncated; that the top and the bottom of the row are on the screen.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getLastVisibleRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the index of the last visible row.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getMouseEventTarget +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the element that the mouse events are attached to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the element that the mouse events are attached to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getPrintMarginColumn +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin column is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin column is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getScrollBottomRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the last visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the last visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getScrollLeft +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the left of the editor and the leftmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getScrollTop +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the value of the distance between the top of the editor and the topmost part of the visible content.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getScrollTopRow +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the first visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the first visible row, regardless of whether it's fully visible or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getShowGutter +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the gutter is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if the gutter is being shown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getShowInvisibles +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether invisible characters are being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether invisible characters are being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getShowPrintMargin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns whether the print margin is being shown or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getTextAreaContainer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the element to which the hidden text area is added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the element to which the hidden text area is added.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.getTheme +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns the path of the current theme.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.hideComposition
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hides the current composition.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hides the current composition.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.hideCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hides the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hides the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns true if you can still scroll by either parameter; in other words, you haven't reached the end of the file or line.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltaXNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The x value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltaYNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The y value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a resize of the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              forceBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, recomputes the size, even if the height and width haven't changed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              gutterWidthNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The width of the gutter in pixels

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              widthNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The width of the editor in pixels

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              heightNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The hiehgt of the editor, in pixels

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.removeGutterDecoration(Object row, Object className)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deprecated; (moved to EditSession)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              classNameObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollBy(Number deltaX, Number deltaY)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across both x- and y-axes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across both x- and y-axes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltaXNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The x value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              deltaYNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The y value to scroll by

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollCursorIntoView(Object cursor, Object offset)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the cursor into the first visibile area of the editor

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the cursor into the first visibile area of the editor

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              cursorObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              offsetObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gracefully scrolls the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gracefully scrolls the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              lineNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A line number

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              centerBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, centers the editor the to indicated line

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              animateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true animates scrolling

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              callbackFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Function to be called after the animation has finished

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollToRow(Number row)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gracefully scrolls from the top of the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Gracefully scrolls from the top of the editor to the row indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A row id

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollToX(Number scrollLeft) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across the x-axis to the pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor across the x-axis to the pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollLeftNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to scroll to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.scrollToY(Number scrollTop) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor to the y pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Scrolls the editor to the y pixel indicated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              scrollTopNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The position to scroll to

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setAnimatedScroll(Boolean shouldAnimate)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to have an animated scroll or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to have an animated scroll or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              shouldAnimateBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show animated scrolls

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setAnnotations(Array annotations)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets annotations for the gutter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets annotations for the gutter.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              annotationsArray

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. An array containing annotations

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setCompositionText(String text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Incomplete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              textString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A string of text to use

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the inner text of the current composition to text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setHScrollBarAlwaysVisible(Boolean alwaysVisible)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the horizontal scrollbar or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the horizontal scrollbar or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              alwaysVisibleBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to make the horizontal scroll bar visible

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setPadding(Number padding)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the padding for all the layers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets the padding for all the layers.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              paddingNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A new padding value (in pixels)

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setPrintMarginColumn(Boolean showPrintMargin)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the print margin column or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the print margin column or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showPrintMarginBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show the print margin column

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setSession(Object session)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates the renderer with an EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Associates the renderer with an EditSession.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              sessionObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setShowGutter(Boolean show)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the gutter or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the gutter or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show the gutter

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setShowInvisibles(Boolean showInvisibles)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show invisible characters or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show invisible characters or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showInvisiblesBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show invisibles

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setShowPrintMargin(Boolean showPrintMargin)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the print margin or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Identifies whether you want to show the print margin or not.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              showPrintMarginBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. Set to true to show the print margin

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.setTheme(String theme)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Sets a new theme for the editor. theme should exist, and be a directory path, like ace/theme/textmate.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              themeString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The path to a theme

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.showCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shows the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Shows the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the pageX and pageY coordinates of the document position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns an object containing the pageX and pageY coordinates of the document position.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The document row position

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              columnNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The document column position

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.unsetStyle(String style)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Removes the class style from the editor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              styleString

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. A class name

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateBackMarkers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schedules an update to all the back markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schedules an update to all the back markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateBreakpoints(Object rows)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Redraw breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Redraw breakpoints.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              rowsObject

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateCursor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Updates the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Updates the cursor icon.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateFontSize
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Updates the font size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Updates the font size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateFrontMarkers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schedules an update to all the front markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Schedules an update to all the front markers in the document.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateFull(Boolean force)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a full update of all the layers, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a full update of all the layers, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              forceBoolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. If true, forces the changes through

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateLines(Number firstRow, Number lastRow)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a partial update of the text, from the range given by the two parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a partial update of the text, from the range given by the two parameters.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              firstRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The first row to update

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              lastRowNumber

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Required. The last row to update

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.updateText
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a full update of the text, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Triggers a full update of the text, for all the rows.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.visualizeBlur
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Blurs the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • VirtualRenderer.visualizeFocus
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Focuses the current container.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Arguments

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              + + + + + +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \ No newline at end of file From 95bd44f342d0f0d857a39c69acfdc7aeb290b70f Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Tue, 27 Nov 2012 21:37:49 -0800 Subject: [PATCH 5/5] Rebuild API docs --- api/anchor.html | 30 +- api/background_tokenizer.html | 16 +- api/document.html | 18 +- api/edit_session.html | 206 +++++++-- api/editor.html | 422 ++++++++++++++++++- api/placeholder.html | 16 +- api/range.html | 28 +- api/resources/csses/ace_api.css | 2 +- api/scrollbar.html | 28 +- api/search.html | 28 +- api/selection.html | 116 ++++- api/split.html | 112 ++++- api/token_iterator.html | 16 +- api/tokenizer.html | 16 +- api/undomanager.html | 16 +- api/virtual_renderer.html | 198 ++++++++- doc/package.json | 2 +- doc/resources/ace/skeleton/csses/ace_api.css | 2 +- doc/resources/ace/templates/lib.jade | 5 +- kitchen-sink.html | 1 + tool/mode_creator.html | 2 +- tool/perf-test.html | 1 + 22 files changed, 1011 insertions(+), 270 deletions(-) diff --git a/api/anchor.html b/api/anchor.html index 7337f23d..49c62fd4 100644 --- a/api/anchor.html +++ b/api/anchor.html @@ -19,12 +19,8 @@ - - - -

                                                                                                                                                                                                                                                                                                                                                                                                                                                              C+U-;RWd&sWGV{Ott_dLlyBKs{1ktj;JxN^%*2 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 literal 0 HcmV?d00001 diff --git a/api/resources/images/cloud9-logo.png b/api/resources/images/cloud9-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..912524a9ee1d12e58f34ec5622fd4d0b99cfd9ea GIT binary patch literal 14564 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 P00000NkvXXu0mjfThRhE literal 0 HcmV?d00001 diff --git a/api/resources/images/dashed_back.png b/api/resources/images/dashed_back.png new file mode 100644 index 0000000000000000000000000000000000000000..c6ee9313f2d636546a778425ff998e839f05624f GIT binary patch literal 3445 zcmV-*4T|!KP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0007@Nklv)PPhvl%6OdwT=`&N;wZOV`)eWUVDJjw2o) zA0dQ5a&T}!0N}lcl2XDshx_|`2=6@}9v+Y+36j&(Qv!f-93euuySsx30l zdGE1WtzzcAU$fO}_3s!F!8!NNy`7w#?9%oTwt4CC@$oKgJF=srqt9YQw0@`2t3NzE z+~o_|$dvaUx3{;)xw)YYb`C8OS0B7v(`?Ty88AFU%q_B%gb-5=jUhqdV1m`7-I+k z=JPpVjG?Nk$QVNi!5BlI#Ih`7R@XJNx~@rUO2udkRlu`r$P1C$#&bcXT+m>0F#!N~{0MKdU2>LSs XM~`vmQcs7_00000NkvXXu0mjfem-^= literal 0 HcmV?d00001 diff --git a/api/resources/images/favicon.ico b/api/resources/images/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..e97c70f6b4f365efc03f9a1cf58ed4709b0b9b6c GIT binary patch literal 1150 zcmdr~S!)wf7`;IQ))11A(3cAO=#K~#8fc=~n>L_XsAy2AOJ9-(p(ZY^HZ^9dc0o(b zgAd|{G%A>aBtcS5Lyge7ytttcB`674lq_@nW?-Z$&Pb zmo*yA{N{Tg@1w<03tq+gQJM9iaq}RW3qxpTPN2CsjAr^MnzsU|Ui0Bi+>LD1hK`Qy zc_Blm)5Y!tP2hQ6MERl@>vLYTS}pwi`WoLC#?j(i_;%eduID3GWKP*|mpodnHm*{s zllQ`Aale$olULARradBmp7V)Z{j`c_=lW2(eF^u;)77;jrPu3|4lH zH|q5|>Wv28r#VzVyu?au0L$DU8dMY3GG|;!kJ@1{7-pr{@;oSpO{Ph3d&QMxjS zjg22D%?I&(VgTjTh*(?V{3u*KjNGILk0TB^91fk+>0}m*C7zA#=Zn(;6lVg+jrZf} zX*+7Qny7_&Zp?)TCoT2xzV3HsvpGS&ZGu+-<%mqWlg=}?JmrUogbyz`ABuz$)p`tu zS;^DRLWY!MG@352-8hc56oGg(c?=fHukNj?8!A;)I3ai%?c6GoGXqcg>&eo_x9 lYx95fFKU1>2_LsG7L~Pq1DmjMD460vS8Y3=P&HI3J};rh23dNFWP> zpr7?AY={LR&d&vohr{7Uz_T37usp-@J}xW-c!6cX#z&KAmf9y|#neVDGKc<=Kf^^L5l4gPeFWjNM+__%eTH3ERuG}BSel77WB^A|?nOg5N)xB06m)Y_ z*048@i5wVHlud^7vrbB7pd|ets_UC*8)xBPzgr61xe*gGS!kmnOCcB6SLcK>g@grV zjI10&gXL4q3?Pi`0c3(iR}e_Dq8ZM79WO~j+OV-~C@?KXX`72r75|+ml9Xq!b>TSrqs4vhL~ZTi~Z-K%S)tsoZ)8KlF4S_LxWViMasHj z?D9SGB%Y?lSg!c)%iHCu72v6O(>T`<&z$^$s^%*%eoKvZy}0^WX6txV@afk38T;4$hTRjMopINt$BmO? zp4p1YRNr$=+jDfnGuK#JXHS#Oi80SLp|nX5*W;~ItK)Ik^3v>+ q@52?yb#p3mr0&MV70#7@>3dG)&xIEj=RPhtuR5LV6d%RUkN*LJOIQW~ literal 0 HcmV?d00001 diff --git a/api/resources/images/main_bg.png b/api/resources/images/main_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..f26aefc2af41d6a77b1c5caa18f50cbe26e5990a GIT binary patch literal 9630 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 U(??5`rT_o{07*qoM6N<$f-EzwH~;_u literal 0 HcmV?d00001 diff --git a/api/resources/images/member-sprites.png b/api/resources/images/member-sprites.png new file mode 100644 index 0000000000000000000000000000000000000000..96b0520fd70a6299d27e188d1090606c78b3c72a GIT binary patch literal 3505 zcmV;i4NmfjP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0008qNkl=csx8FCPWlPQ4|TGD2k#eKx-@xQ}K&fJQk0| z0Y1Se_yoZ7JkRrlI2;a#!|^AC&Xi?YmSq_Tg+ifF2#7|ak!Yl}+qyjr27|$15D)}G z5CmwwNtIkFUqq;{#GFsg=}<8f?-F%t~1)D*+y_$LsL|EX%SiOHswYooYfATvPHiFw8|d*X|ZF*tCZ`q;2i&odWpT z%tYdAD-fwo<>YB?ux4MbuCv6wpwM@Z9PHOknW4$qjBG<=eMv4}4iIfDYPieQbUc9x93+K8nS6 zR{;$d?e=4Jg(He?U~y`SqIa*Bn^TQ|Jerxw4sD<)irI=s(S+D6&;Tp|x&W$v`%6q| f1OLNomY)Lv*+sgY((&Kv00000NkvXXu0mjf%L9kK literal 0 HcmV?d00001 diff --git a/api/resources/images/menu_disc.png b/api/resources/images/menu_disc.png new file mode 100644 index 0000000000000000000000000000000000000000..1d3925b3f103cb7d1d2ccb34251cb2543f936f2e GIT binary patch literal 556 zcmV+{0@MA8P)KLZ*U+R`sCEkzKl)gj5&q@hY_5?)@_euSf22N!q0z{yc?Q2YY_Kym8e z5Fvwu2%hQO!{u_psMvL#(bD64NQRTZj^-}DnS22ry9f-;mW=gZvQj}U-ZdMsK&I8^7~DvX`q=inIVXE>RF&gA_=FG; u5mXfsK}5K&3+cUYfYusjMvM_v&>- literal 0 HcmV?d00001 diff --git a/api/resources/images/method_bg.png b/api/resources/images/method_bg.png new file mode 100644 index 0000000000000000000000000000000000000000..b018955737a730de52f23bc8fd39786ffe7cd9d0 GIT binary patch literal 8001 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 N002ovPDHLkV1g96i!uNJ literal 0 HcmV?d00001 diff --git a/api/resources/images/sidebar-top-bg.png b/api/resources/images/sidebar-top-bg.png new file mode 100644 index 0000000000000000000000000000000000000000..c0a800e1f8ac0b7cba486dba48441f5cfaaca8be GIT binary patch literal 2693 zcmaJ@c{r47AD)mURCE%9&KQL(vogjsgjpXhEv2IGNHi%+mV_*sV>#)JPIbONzP|Um-uHQa&voDTZ+))o&G7Yh(_RBz z1A#!aJ>1FuiuG5;yG~t6@wGp&z)&m(AcY3*=0<=bIv;?zgmc3HmK!4gu{0@!H6*gg#a4>>981fG)F*)afE-;B`EeQ$4EHr z69kNMg#R5B&C3@?;_?BQ9Rg*;K;cj@92$Yf+S=ROTf;CYGzy8rAki2bv^@cfA)rvO z&ktPTjUOIC@F!D0`%+kr@JJBk5s*lcNQ4k!5nTR3B-+8jVMPOju~8sw1hE{D9%I81 zn0`?p0|Ex0$pe{O4s1n{9>x`dj&Mb!f2Y9aeU;@1K9@;RFk}p!heRV#D=B>edU^eS zD4YEiEdc$2f8zb0!h(QU9)R=*1Y9AXp=ex$>53~Jfy4*sAeSG&^vH=eGg&Y147xPW-$|$gT3eRMK&pZT#Q~6vr>{H4F<~L)p zqkdEGGdKL(v7o-mMJj?pt~B<)8vW%+F+D5WuVbq)z79UXQA|5uG1fCf3)&Ef>VgN^ zB_QT`=jk4nk;i&U@V@AeACYTRT-WKU8wAN7?)iRUUN@*$eV92`()##;SUg81%MS^K z)ofW!+{;(5u(LBWGar^j5kG{4UO1I8>z2nHAp$~QNdNZwY z`D|~#3bD$+lX5d$_Xd!2?AGc+l4Vxoolu{N(e->oR#C%sJyaX-1(C#fG_lmLfi-az zZ(FVzy8n~jIfLYbc4}t#jL{c0@wU>LE@ixJmJoT^nDT~Y%q5pr=GrH76&K&aeI%7Y zZq}V!TQ1Hm1T4NIq7wV0l^6E>Zc?=Bg%~EkpJB3@F({b0i)qKFxq22y+0+?tCN5+5 zE~}qU<&$6X$^;{zH$BiI{TjaBTNxPEX-d}}3)P?qA)pbdxY*QM7IgA4?7q47y~Vm? zTa!E;?Qh*|$XKtuOlpzI_IDYmJh$6t3Kn=8o*}04DQ5FO3yG@8loL)#eu9B1PAoem zI*oL5xpTI{#xlJoC0cN*l+<*8T3^`}yhv=Pu*$0mR*2;711$Y)m$alKi6%!Ymm(9C zux8Ma?HE5zm+O~1J@3qkE3=rZBu;$a@Wy?*nYDNIpD0akg|6lA+A{8ovUOwGekj|m z%eu%eZ8De6Og62$6zQIyJe!`V(XTD9&}+yZzoF#QE~;{9A$lck@DP-q@bmNW@iEo7 zy55SV8(nH7uIo3^e7=iTo1a)z{w&i!V#NFGc{8{50V(zilh?T6o$?lQUlsG*yzWFj z6cN@kJ$1Pe`oMi=cBK9G+><0%m7{_3v3Kju-QK3nkG$U#Jsk(xa-|b#S zvUp6%Cse&`EXdWXSz1~;-nL2hXl05xu1TV(;x-?*TE|uHcfUxGh9d{d*36 zODY?)*_u8s+3jxnA!w@cHGZfYdmv?kWYVW*R!M|RNS2Y z`y)S7tG9DI+OKcP>6dV%QmJ7^=~>c={UivA@Xtq4hd6P@VnrUXe%=w~ZEOYaW$K)P{|X)@I)m)yMVWrJXt{vTGr?>jYTZ#y#`K z+9k!cnNE8<-p@fFGROTaB2hgRCPt4Q6MCo<&f|tRIJTbb)9$QDncpG$v*FyD zW|T$LmUF>ZplOrK*r$%kD25qMqk#5ou*);6Ry**}&OoLLx+@uv_pGk!YBj&3pE`J4 zR-Bf#{f2G_Ce(kmd`OR4`J!?QbQ7+~y&8px#u58$k4#F`&8Gw}{ND{6lpNOCVK-I> zT?`2}l(S`lSGAi@ZFqKcBKG1n?ckn-uAPeH8?8~;_v@j^FWM>ROt% zM`#8ii=Cmhmz{dAWYQBk>1EDJKWkF${Wq5wS%AbG1Ew+U<4-YH?ikHq+YnW!uM!;E q{jpaa61jM9fI=A43m{H~Fe-X!2h!YK=+& literal 0 HcmV?d00001 diff --git a/api/resources/images/sidebar_border.png b/api/resources/images/sidebar_border.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6cd700be849c020b74c06ca2c4ed521b744cd6 GIT binary patch literal 2967 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 LQ|<2BoVog6l3=FD literal 0 HcmV?d00001 diff --git a/api/resources/images/swirl_divider.png b/api/resources/images/swirl_divider.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e9f6c6af3c18fc84c25594f3434d1a1031d209 GIT binary patch literal 1043 zcmV+u1nm2XP)R?59o%`Dv8?v^mBYql_}fD5H#NI5wfv&DMR<8C9Dp z{b^e^v-L~bZ0nk)O`A)u`Tjk3d*_zexpnOpD_QReFPGfsbI(Jc>&NrlJ%{E(Q9;-b z9q7jm45JSYQ`~`G3_->K4qMvj#%0L3g428Sc?1%?7=+vCM~sE=8@jGH&GvshVPEvm zuSH*c-P)d9kEdq7Y^sZ#)A0eP(1UxQBkI!)H9fhqwH=%fMT?wM(2p*R2i9YcR+Yqy zZ_&iU!kUt)xA76(mi`I!|$Xw#$v$P9b~8475=|Z&~7<%s`id#Onq0IY);j=j?VSUp1~rWIO$` z*6tqvAf2&P?h}RfjNQjb__xKg9WE0$qyxqa*~Z4;Z$bjPjm6<_f)BEdc_AGzZn#X^ zjoAQPCT>Uvj2E(vjlti91pfF_TT(MC{F788@5l4asGiOje~ITyWjzp%89BT((sRYK zLDPQbD5v*FmAX^+HF5=7yccVKFx2r7#*fEcGAMZ(64*XE2`5HQG=)9{XK?JWIX9BLR=y z$4C&*JcZW05!;wiE;E~4F})49I*D1{jz1*dXL^HPfV4vaO|a#tk>i8Yl5=rgO_>X5 z&klXM>2H$UHoK3JAd08Zx;LYT<@*K&Z;RhS$nZkODlcsUxnk)(dHwbL>&aX}XU3|T z_HkZ=gyF?-Y=-uV>=|to&=9Ub!Vo5yeNNSu{_OFr@H>kUNOeB8PL0yffZfMN5XDny z{TtHFp39J$&Tp>8k{@cD*4ZrohCP=NVt({k3oef`!?hwxp2DX2cOfPDh&SX9iA~}x zX1QLECbKGq^fhfhF-K@?BnKU%_L z05>3G2*-EHcff<2kTHlpOU_ALhK#H5z-eit4').hide().insertAfter("body")[0].contentWindow;q=function(){return a(n.document[c][l])};o=function(u,s){if(u!==s){var t=n.document;t.open().close();t[c].hash="#"+u}};o(a())}}m.start=function(){if(r){return}var t=a();o||p();(function s(){var v=a(),u=q(t);if(v!==t){o(t=v,u);$(i).trigger(d)}else{if(u!==t){i[c][l]=i[c][l].replace(/#.*/,"")+"#"+u}}r=setTimeout(s,$[d+"Delay"])})()};m.stop=function(){if(!n){r&&clearTimeout(r);r=0}};return m})()})(jQuery,this); \ No newline at end of file diff --git a/api/resources/javascripts/bootstrap.js b/api/resources/javascripts/bootstrap.js new file mode 100644 index 00000000..79241e74 --- /dev/null +++ b/api/resources/javascripts/bootstrap.js @@ -0,0 +1,389 @@ +/* ============================================================ + * bootstrap-dropdown.js v2.1.1 + * http://twitter.github.com/bootstrap/javascript.html#dropdowns + * ============================================================ + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* DROPDOWN CLASS DEFINITION + * ========================= */ + + var toggle = '[data-toggle=dropdown]' + , Dropdown = function (element) { + var $el = $(element).on('click.dropdown.data-api', this.toggle) + $('html').on('click.dropdown.data-api', function () { + $el.parent().removeClass('open') + }) + } + + Dropdown.prototype = { + + constructor: Dropdown + + , toggle: function (e) { + var $this = $(this) + , $parent + , isActive + + if ($this.is('.disabled, :disabled')) return + + $parent = getParent($this) + + isActive = $parent.hasClass('open') + + clearMenus() + + if (!isActive) { + $parent.toggleClass('open') + $this.focus() + } + + return false + } + + , keydown: function (e) { + var $this + , $items + , $active + , $parent + , isActive + , index + + if (!/(38|40|27)/.test(e.keyCode)) return + + $this = $(this) + + e.preventDefault() + e.stopPropagation() + + if ($this.is('.disabled, :disabled')) return + + $parent = getParent($this) + + isActive = $parent.hasClass('open') + + if (!isActive || (isActive && e.keyCode == 27)) return $this.click() + + $items = $('[role=menu] li:not(.divider) a', $parent) + + if (!$items.length) return + + index = $items.index($items.filter(':focus')) + + if (e.keyCode == 38 && index > 0) index-- // up + if (e.keyCode == 40 && index < $items.length - 1) index++ // down + if (!~index) index = 0 + + $items + .eq(index) + .focus() + } + + } + + function clearMenus() { + getParent($(toggle)) + .removeClass('open') + } + + function getParent($this) { + var selector = $this.attr('data-target') + , $parent + + if (!selector) { + selector = $this.attr('href') + selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 + } + + $parent = $(selector) + $parent.length || ($parent = $this.parent()) + + return $parent + } + + + /* DROPDOWN PLUGIN DEFINITION + * ========================== */ + + $.fn.dropdown = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('dropdown') + if (!data) $this.data('dropdown', (data = new Dropdown(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + $.fn.dropdown.Constructor = Dropdown + + + /* APPLY TO STANDARD DROPDOWN ELEMENTS + * =================================== */ + + $(function () { + $('html') + .on('click.dropdown.data-api touchstart.dropdown.data-api', clearMenus) + $('body') + .on('click.dropdown touchstart.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) + .on('click.dropdown.data-api touchstart.dropdown.data-api' , toggle, Dropdown.prototype.toggle) + .on('keydown.dropdown.data-api touchstart.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) + }) + +}(window.jQuery); +/* ======================================================== + * bootstrap-tab.js v2.1.1 + * http://twitter.github.com/bootstrap/javascript.html#tabs + * ======================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* TAB CLASS DEFINITION + * ==================== */ + + var Tab = function (element) { + this.element = $(element) + } + + Tab.prototype = { + + constructor: Tab + + , show: function () { + var $this = this.element + , $ul = $this.closest('ul:not(.dropdown-menu)') + , selector = $this.attr('data-target') + , previous + , $target + , e + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 + } + + if ( $this.parent('li').hasClass('active') ) return + + previous = $ul.find('.active a').last()[0] + + e = $.Event('show', { + relatedTarget: previous + }) + + $this.trigger(e) + + if (e.isDefaultPrevented()) return + + $target = $(selector) + + this.activate($this.parent('li'), $ul) + this.activate($target, $target.parent(), function () { + $this.trigger({ + type: 'shown' + , relatedTarget: previous + }) + }) + } + + , activate: function ( element, container, callback) { + var $active = container.find('> .active') + , transition = callback + && $.support.transition + && $active.hasClass('fade') + + function next() { + $active + .removeClass('active') + .find('> .dropdown-menu > .active') + .removeClass('active') + + element.addClass('active') + + if (transition) { + element[0].offsetWidth // reflow for transition + element.addClass('in') + } else { + element.removeClass('fade') + } + + if ( element.parent('.dropdown-menu') ) { + element.closest('li.dropdown').addClass('active') + } + + callback && callback() + } + + transition ? + $active.one($.support.transition.end, next) : + next() + + $active.removeClass('in') + } + } + + + /* TAB PLUGIN DEFINITION + * ===================== */ + + $.fn.tab = function ( option ) { + return this.each(function () { + var $this = $(this) + , data = $this.data('tab') + if (!data) $this.data('tab', (data = new Tab(this))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.tab.Constructor = Tab + + + /* TAB DATA-API + * ============ */ + + $(function () { + $('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { + e.preventDefault() + $(this).tab('show') + }) + }) + +}(window.jQuery); +/* ========================================================== + * bootstrap-affix.js v2.1.1 + * http://twitter.github.com/bootstrap/javascript.html#affix + * ========================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* AFFIX CLASS DEFINITION + * ====================== */ + + var Affix = function (element, options) { + this.options = $.extend({}, $.fn.affix.defaults, options) + this.$window = $(window).on('scroll.affix.data-api', $.proxy(this.checkPosition, this)) + this.$element = $(element) + this.checkPosition() + } + + Affix.prototype.checkPosition = function () { + if (!this.$element.is(':visible')) return + + var scrollHeight = $(document).height() + , scrollTop = this.$window.scrollTop() + , position = this.$element.offset() + , offset = this.options.offset + , offsetBottom = offset.bottom + , offsetTop = offset.top + , reset = 'affix affix-top affix-bottom' + , affix + + if (typeof offset != 'object') offsetBottom = offsetTop = offset + if (typeof offsetTop == 'function') offsetTop = offset.top() + if (typeof offsetBottom == 'function') offsetBottom = offset.bottom() + + affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? + false : offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? + 'bottom' : offsetTop != null && scrollTop <= offsetTop ? + 'top' : false + + if (this.affixed === affix) return + + this.affixed = affix + this.unpin = affix == 'bottom' ? position.top - scrollTop : null + + this.$element.removeClass(reset).addClass('affix' + (affix ? '-' + affix : '')) + } + + + /* AFFIX PLUGIN DEFINITION + * ======================= */ + + $.fn.affix = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('affix') + , options = typeof option == 'object' && option + if (!data) $this.data('affix', (data = new Affix(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.affix.Constructor = Affix + + $.fn.affix.defaults = { + offset: 0 + } + + + /* AFFIX DATA-API + * ============== */ + + $(window).on('load', function () { + $('[data-spy="affix"]').each(function () { + var $spy = $(this) + , data = $spy.data() + + data.offset = data.offset || {} + + data.offsetBottom && (data.offset.bottom = data.offsetBottom) + data.offsetTop && (data.offset.top = data.offsetTop) + + $spy.affix(data) + }) + }) + + +}(window.jQuery); \ No newline at end of file diff --git a/api/resources/javascripts/clicker.js b/api/resources/javascripts/clicker.js new file mode 100644 index 00000000..90e7e12c --- /dev/null +++ b/api/resources/javascripts/clicker.js @@ -0,0 +1,69 @@ +function setupClicker() { + // when hovering over arrow, add highlight (only if inactive) + $("i.methodToggle").hover(function () { + if (!$("i.methodToggle").hasClass('active')) + $(this).addClass("methodToggleHover"); + }, + function () { + $(this).removeClass("methodToggleHover"); + } + ); + + function handleClick(e, linkHref) { + //if (linkHref.indexOf("nav=api&api=") >= 0) + // return; + if (linkHref == "api") + return; + + e.preventDefault(); + + var dstElem; + if (linkHref) { + dstElem = $("article[id='" + linkHref + "']"); + } + + var $article = (dstElem || $(this)).closest('.article'), + $arrow = $('i.methodClicker', $article); + + if (!$article.hasClass('methodToggleOpen') || this.force) { + $article.addClass('methodToggleOpen'); + $arrow.removeClass('inactive').addClass('active'); + + if (!$arrow[0]) + return; + + var data = $arrow[0].id.replace(/^js_/, ""); + //var state = {}; + //state.section = data; + //$.bbq.pushState(state); + + scrollTo(null, data); + } + else { + $article.removeClass('methodToggleOpen'); + $arrow.removeClass('active').addClass('inactive'); + } + } + + function transformHash(e) { + // some bs to figure out link hash + var hashId = (e.srcElement ? e.srcElement.href : (e.hash || e.target.href)) || e.currentTarget.hash; + + handleClick(e, hashId.substring(hashId.indexOf("#") + 1)); + } + + // for the arrow + $("i.methodToggle").click(handleClick); + + // for the signature + $('.member-name').click(handleClick); + + // for the top dropdown + $('li.memberLink a').click(transformHash); + + //$('a[href^="#"]').click(transformHash); + + $('.related-to', '.metaInfo').click(function(){ + location.hash = $(this).find('a').attr('href').split('#')[1]; + }); +} \ No newline at end of file diff --git a/api/resources/javascripts/disqus-ext.js b/api/resources/javascripts/disqus-ext.js new file mode 100644 index 00000000..6bb7ff4e --- /dev/null +++ b/api/resources/javascripts/disqus-ext.js @@ -0,0 +1,17 @@ +function setupDisqus(href) { + var disqus_shortname = 'aceapi'; + + //var paths = window.location.pathname.split("/"); + //var fileName = paths[paths.length - 2] + "/" + paths[paths.length - 1]; + + //var disqus_identifier = fileName; + var disqus_identifier = href.substring(2); + + (function() { + if (document.getElementById("disqusScript") === null) { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + } + })(); +} \ No newline at end of file diff --git a/api/resources/javascripts/ga.js b/api/resources/javascripts/ga.js new file mode 100644 index 00000000..e381972d --- /dev/null +++ b/api/resources/javascripts/ga.js @@ -0,0 +1,9 @@ + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-31998201-1']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); \ No newline at end of file diff --git a/api/resources/javascripts/jquery-scrollspy.js b/api/resources/javascripts/jquery-scrollspy.js new file mode 100644 index 00000000..71b4a363 --- /dev/null +++ b/api/resources/javascripts/jquery-scrollspy.js @@ -0,0 +1,98 @@ +/*! + * jQuery Scrollspy Plugin + * Author: @sxalexander + * Licensed under the MIT license + */ + + +;(function ( $, window, document, undefined ) { + + $.fn.extend({ + scrollspy: function ( options ) { + + var defaults = { + min: 0, + max: 0, + mode: 'vertical', + buffer: 0, + container: window, + onEnter: options.onEnter ? options.onEnter : [], + onLeave: options.onLeave ? options.onLeave : [], + onTick: options.onTick ? options.onTick : [] + } + + var options = $.extend( {}, defaults, options ); + + return this.each(function (i) { + + var element = this; + var o = options; + var $container = $(o.container); + var mode = o.mode; + var buffer = o.buffer; + var enters = leaves = 0; + var inside = false; + + /* add listener to container */ + $container.bind('scroll', function(e){ + var position = {top: $(this).scrollTop(), left: $(this).scrollLeft()}; + var xy = (mode == 'vertical') ? position.top + buffer : position.left + buffer; + var max = o.max; + var min = o.min; + + /* fix max */ + if($.isFunction(o.max)){ + max = o.max(); + } + + /* fix max */ + if($.isFunction(o.min)){ + min = o.min(); + } + + if(max == 0){ + max = (mode == 'vertical') ? $container.height() : $container.outerWidth() + $(element).outerWidth(); + } + + /* if we have reached the minimum bound but are below the max ... */ + if(xy >= o.min && xy <= max){ + /* trigger enter event */ + if(!inside){ + inside = true; + enters++; + + /* fire enter event */ + $(element).trigger('scrollEnter', {position: position}) + if($.isFunction(o.onEnter)){ + o.onEnter(element, position); + } + + } + + /* triger tick event */ + $(element).trigger('scrollTick', {position: position, inside: inside, enters: enters, leaves: leaves}) + if($.isFunction(o.onTick)){ + o.onTick(element, position, inside, enters, leaves); + } + }else{ + + if(inside){ + inside = false; + leaves++; + /* trigger leave event */ + $(element).trigger('scrollLeave', {position: position, leaves:leaves}) + + if($.isFunction(o.onLeave)){ + o.onLeave(element, position); + } + } + } + }); + + }); + } + + }) + + +})( jQuery, window ); diff --git a/api/resources/javascripts/jquery.collapse.js b/api/resources/javascripts/jquery.collapse.js new file mode 100644 index 00000000..427ee5fa --- /dev/null +++ b/api/resources/javascripts/jquery.collapse.js @@ -0,0 +1,151 @@ +/*! + * Collapse plugin for jQuery + * http://github.com/danielstocks/jQuery-Collapse/ + * + * @author Daniel Stocks (http://webcloud.se) + * @version 0.9.1 + * @updated 17-AUG-2010 + * + * Copyright 2010, Daniel Stocks + * Released under the MIT, BSD, and GPL Licenses. + */ + +(function($) { + + // Use a cookie counter to allow multiple instances of the plugin + var cookieCounter = 0; + + $.fn.extend({ + collapse: function(options) { + + var defaults = { + head : "h3", + group : "div, ul", + cookieName : "collapse", + // Default function for showing content + show: function() { + this.show(); + }, + // Default function for hiding content + hide: function() { + this.hide(); + } + }; + var op = $.extend(defaults, options); + + // Default CSS classes + var active = "active", + inactive = "inactive"; + + return this.each(function() { + + // Increment coookie counter to ensure cookie name integrity + cookieCounter++; + var obj = $(this), + // Find all headers and wrap them in for accessibility. + sections = obj.find(op.head).wrapInner(''), + l = sections.length, + cookie = op.cookieName + "_" + cookieCounter; + // Locate all panels directly following a header + var panel = obj.find(op.head).map(function() { + var head = $(this) + if(!head.hasClass(active)) { + return head.next(op.group).hide()[0]; + } + return head.next(op.group)[0]; + }); + + // Bind event for showing content + obj.bind("show", function(e, bypass) { + var obj = $(e.target); + // ARIA attribute + obj.attr('aria-hidden', false) + .prev() + .removeClass(inactive) + .addClass(active); + // Bypass method for instant display + if(bypass) { + obj.show(); + } else { + op.show.call(obj); + } + }); + + // Bind event for hiding content + obj.bind("hide", function(e, bypass) { + var obj = $(e.target); + obj.attr('aria-hidden', true) + .prev() + .removeClass(active) + .addClass(inactive); + if(bypass) { + obj.hide(); + } else { + op.hide.call(obj); + } + }); + + // Look for existing cookies + if(cookieSupport) { + for (var c=0;c<=l;c++) { + var val = $.cookie(cookie + c); + // Show content if associating cookie is found + if ( val == c + "open" ) { + panel.eq(c).trigger('show', [true]); + // Hide content + } else if ( val == c + "closed") { + panel.eq(c).trigger('hide', [true]); + } + } + } + + // Delegate click event to show/hide content. + obj.bind("click", function(e) { + var t = $(e.target); + // Check if header was clicked + if(!t.is(op.head)) { + // What about link inside header. + if ( t.parent().is(op.head) ) { + t = t.parent(); + } else { + return; + } + e.preventDefault(); + } + // Figure out what position the clicked header has. + var num = sections.index(t), + cookieName = cookie + num, + cookieVal = num, + content = t.next(op.group); + // If content is already active, hide it. + if(t.hasClass(active)) { + content.trigger('hide'); + cookieVal += 'closed'; + if(cookieSupport) { + $.cookie(cookieName, cookieVal, { path: '/', expires: 10 }); + } + return; + } + // Otherwise show it. + content.trigger('show'); + cookieVal += 'open'; + if(cookieSupport) { + $.cookie(cookieName, cookieVal, { path: '/', expires: 10 }); + } + }); + }); + } + }); + + // Make sure can we eat cookies without getting into trouble. + var cookieSupport = (function() { + try { + $.cookie('x', 'x', { path: '/', expires: 10 }); + $.cookie('x', null); + } + catch(e) { + return false; + } + return true; + })(); +})(jQuery); \ No newline at end of file diff --git a/api/resources/javascripts/jquery.cookie.js b/api/resources/javascripts/jquery.cookie.js new file mode 100644 index 00000000..6df1faca --- /dev/null +++ b/api/resources/javascripts/jquery.cookie.js @@ -0,0 +1,96 @@ +/** + * Cookie plugin + * + * Copyright (c) 2006 Klaus Hartl (stilbuero.de) + * Dual licensed under the MIT and GPL licenses: + * http://www.opensource.org/licenses/mit-license.php + * http://www.gnu.org/licenses/gpl.html + * + */ + +/** + * Create a cookie with the given name and value and other optional parameters. + * + * @example $.cookie('the_cookie', 'the_value'); + * @desc Set the value of a cookie. + * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); + * @desc Create a cookie with all available options. + * @example $.cookie('the_cookie', 'the_value'); + * @desc Create a session cookie. + * @example $.cookie('the_cookie', null); + * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain + * used when the cookie was set. + * + * @param String name The name of the cookie. + * @param String value The value of the cookie. + * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. + * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. + * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. + * If set to null or omitted, the cookie will be a session cookie and will not be retained + * when the the browser exits. + * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). + * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). + * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will + * require a secure protocol (like HTTPS). + * @type undefined + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ + +/** + * Get the value of a cookie with the given name. + * + * @example $.cookie('the_cookie'); + * @desc Get the value of a cookie. + * + * @param String name The name of the cookie. + * @return The value of the cookie. + * @type String + * + * @name $.cookie + * @cat Plugins/Cookie + * @author Klaus Hartl/klaus.hartl@stilbuero.de + */ +jQuery.cookie = function(name, value, options) { + if (typeof value != 'undefined') { // name and value given, set cookie + options = options || {}; + if (value === null) { + value = ''; + options.expires = -1; + } + var expires = ''; + if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { + var date; + if (typeof options.expires == 'number') { + date = new Date(); + date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); + } else { + date = options.expires; + } + expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE + } + // CAUTION: Needed to parenthesize options.path and options.domain + // in the following expressions, otherwise they evaluate to undefined + // in the packed version for some reason... + var path = options.path ? '; path=' + (options.path) : ''; + var domain = options.domain ? '; domain=' + (options.domain) : ''; + var secure = options.secure ? '; secure' : ''; + document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); + } else { // only name given, get cookie + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } +}; \ No newline at end of file diff --git a/api/resources/javascripts/jquery.js b/api/resources/javascripts/jquery.js new file mode 100644 index 00000000..3ca5e0f5 --- /dev/null +++ b/api/resources/javascripts/jquery.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7 jquery.com | jquery.org/license */ +(function(a,b){function cA(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cx(a){if(!cm[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cn||(cn=c.createElement("iframe"),cn.frameBorder=cn.width=cn.height=0),b.appendChild(cn);if(!co||!cn.createElement)co=(cn.contentWindow||cn.contentDocument).document,co.write((c.compatMode==="CSS1Compat"?"":"")+""),co.close();d=co.createElement(a),co.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cn)}cm[a]=e}return cm[a]}function cw(a,b){var c={};f.each(cs.concat.apply([],cs.slice(0,b)),function(){c[this]=a});return c}function cv(){ct=b}function cu(){setTimeout(cv,0);return ct=f.now()}function cl(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ck(){try{return new a.XMLHttpRequest}catch(b){}}function ce(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bB(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function br(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bi,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bq(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bp(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bp)}function bp(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bo(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bn(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bm(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(){return!0}function M(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.add(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return a!=null&&m.test(a)&&!isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
                                                                                                                                                                                                                                                                                                                                                                                                                                                              a

                                                                                                                                                                                                                                                                                                                                                                                                                                                              C+U-;RWd&sWGV{Ott_dLlyBKs{1ktj;JxN^%*2 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 diff --git a/api/resources/images/cloud9-logo.png b/api/resources/images/cloud9-logo.png deleted file mode 100644 index 912524a9ee1d12e58f34ec5622fd4d0b99cfd9ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14564 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 P00000NkvXXu0mjfThRhE diff --git a/api/resources/images/dashed_back.png b/api/resources/images/dashed_back.png deleted file mode 100644 index c6ee9313f2d636546a778425ff998e839f05624f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3445 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 XM~`vmQcs7_00000NkvXXu0mjfem-^= diff --git a/api/resources/images/favicon.ico b/api/resources/images/favicon.ico deleted file mode 100644 index e97c70f6b4f365efc03f9a1cf58ed4709b0b9b6c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1150 zcmdr~S!)wf7`;IQ))11A(3cAO=#K~#8fc=~n>L_XsAy2AOJ9-(p(ZY^HZ^9dc0o(b zgAd|{G%A>aBtcS5Lyge7ytttcB`674lq_@nW?-Z$&Pb zmo*yA{N{Tg@1w<03tq+gQJM9iaq}RW3qxpTPN2CsjAr^MnzsU|Ui0Bi+>LD1hK`Qy zc_Blm)5Y!tP2hQ6MERl@>vLYTS}pwi`WoLC#?j(i_;%eduID3GWKP*|mpodnHm*{s zllQ`Aale$olULARradBmp7V)Z{j`c_=lW2(eF^u;)77;jrPu3|4lH zH|q5|>Wv28r#VzVyu?au0L$DU8dMY3GG|;!kJ@1{7-pr{@;oSpO{Ph3d&QMxjS zjg22D%?I&(VgTjTh*(?V{3u*KjNGILk0TB^91fk+>0}m*C7zA#=Zn(;6lVg+jrZf} zX*+7Qny7_&Zp?)TCoT2xzV3HsvpGS&ZGu+-<%mqWlg=}?JmrUogbyz`ABuz$)p`tu zS;^DRLWY!MG@352-8hc56oGg(c?=fHukNj?8!A;)I3ai%?c6GoGXqcg>&eo_x9 lYx95fFKU1>2_LsG7L~Pq1DmjMD460vS8Y3=P&HI3J};rh23dNFWP> zpr7?AY={LR&d&vohr{7Uz_T37usp-@J}xW-c!6cX#z&KAmf9y|#neVDGKc<=Kf^^L5l4gPeFWjNM+__%eTH3ERuG}BSel77WB^A|?nOg5N)xB06m)Y_ z*048@i5wVHlud^7vrbB7pd|ets_UC*8)xBPzgr61xe*gGS!kmnOCcB6SLcK>g@grV zjI10&gXL4q3?Pi`0c3(iR}e_Dq8ZM79WO~j+OV-~C@?KXX`72r75|+ml9Xq!b>TSrqs4vhL~ZTi~Z-K%S)tsoZ)8KlF4S_LxWViMasHj z?D9SGB%Y?lSg!c)%iHCu72v6O(>T`<&z$^$s^%*%eoKvZy}0^WX6txV@afk38T;4$hTRjMopINt$BmO? zp4p1YRNr$=+jDfnGuK#JXHS#Oi80SLp|nX5*W;~ItK)Ik^3v>+ q@52?yb#p3mr0&MV70#7@>3dG)&xIEj=RPhtuR5LV6d%RUkN*LJOIQW~ diff --git a/api/resources/images/main_bg.png b/api/resources/images/main_bg.png deleted file mode 100644 index f26aefc2af41d6a77b1c5caa18f50cbe26e5990a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9630 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 U(??5`rT_o{07*qoM6N<$f-EzwH~;_u diff --git a/api/resources/images/member-sprites.png b/api/resources/images/member-sprites.png deleted file mode 100644 index 96b0520fd70a6299d27e188d1090606c78b3c72a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3505 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 diff --git a/api/resources/images/menu_disc.png b/api/resources/images/menu_disc.png deleted file mode 100644 index 1d3925b3f103cb7d1d2ccb34251cb2543f936f2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 556 zcmV+{0@MA8P)KLZ*U+R`sCEkzKl)gj5&q@hY_5?)@_euSf22N!q0z{yc?Q2YY_Kym8e z5Fvwu2%hQO!{u_psMvL#(bD64NQRTZj^-}DnS22ry9f-;mW=gZvQj}U-ZdMsK&I8^7~DvX`q=inIVXE>RF&gA_=FG; u5mXfsK}5K&3+cUYfYusjMvM_v&>- diff --git a/api/resources/images/method_bg.png b/api/resources/images/method_bg.png deleted file mode 100644 index b018955737a730de52f23bc8fd39786ffe7cd9d0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8001 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 N002ovPDHLkV1g96i!uNJ diff --git a/api/resources/images/sidebar-top-bg.png b/api/resources/images/sidebar-top-bg.png deleted file mode 100644 index c0a800e1f8ac0b7cba486dba48441f5cfaaca8be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2693 zcmaJ@c{r47AD)mURCE%9&KQL(vogjsgjpXhEv2IGNHi%+mV_*sV>#)JPIbONzP|Um-uHQa&voDTZ+))o&G7Yh(_RBz z1A#!aJ>1FuiuG5;yG~t6@wGp&z)&m(AcY3*=0<=bIv;?zgmc3HmK!4gu{0@!H6*gg#a4>>981fG)F*)afE-;B`EeQ$4EHr z69kNMg#R5B&C3@?;_?BQ9Rg*;K;cj@92$Yf+S=ROTf;CYGzy8rAki2bv^@cfA)rvO z&ktPTjUOIC@F!D0`%+kr@JJBk5s*lcNQ4k!5nTR3B-+8jVMPOju~8sw1hE{D9%I81 zn0`?p0|Ex0$pe{O4s1n{9>x`dj&Mb!f2Y9aeU;@1K9@;RFk}p!heRV#D=B>edU^eS zD4YEiEdc$2f8zb0!h(QU9)R=*1Y9AXp=ex$>53~Jfy4*sAeSG&^vH=eGg&Y147xPW-$|$gT3eRMK&pZT#Q~6vr>{H4F<~L)p zqkdEGGdKL(v7o-mMJj?pt~B<)8vW%+F+D5WuVbq)z79UXQA|5uG1fCf3)&Ef>VgN^ zB_QT`=jk4nk;i&U@V@AeACYTRT-WKU8wAN7?)iRUUN@*$eV92`()##;SUg81%MS^K z)ofW!+{;(5u(LBWGar^j5kG{4UO1I8>z2nHAp$~QNdNZwY z`D|~#3bD$+lX5d$_Xd!2?AGc+l4Vxoolu{N(e->oR#C%sJyaX-1(C#fG_lmLfi-az zZ(FVzy8n~jIfLYbc4}t#jL{c0@wU>LE@ixJmJoT^nDT~Y%q5pr=GrH76&K&aeI%7Y zZq}V!TQ1Hm1T4NIq7wV0l^6E>Zc?=Bg%~EkpJB3@F({b0i)qKFxq22y+0+?tCN5+5 zE~}qU<&$6X$^;{zH$BiI{TjaBTNxPEX-d}}3)P?qA)pbdxY*QM7IgA4?7q47y~Vm? zTa!E;?Qh*|$XKtuOlpzI_IDYmJh$6t3Kn=8o*}04DQ5FO3yG@8loL)#eu9B1PAoem zI*oL5xpTI{#xlJoC0cN*l+<*8T3^`}yhv=Pu*$0mR*2;711$Y)m$alKi6%!Ymm(9C zux8Ma?HE5zm+O~1J@3qkE3=rZBu;$a@Wy?*nYDNIpD0akg|6lA+A{8ovUOwGekj|m z%eu%eZ8De6Og62$6zQIyJe!`V(XTD9&}+yZzoF#QE~;{9A$lck@DP-q@bmNW@iEo7 zy55SV8(nH7uIo3^e7=iTo1a)z{w&i!V#NFGc{8{50V(zilh?T6o$?lQUlsG*yzWFj z6cN@kJ$1Pe`oMi=cBK9G+><0%m7{_3v3Kju-QK3nkG$U#Jsk(xa-|b#S zvUp6%Cse&`EXdWXSz1~;-nL2hXl05xu1TV(;x-?*TE|uHcfUxGh9d{d*36 zODY?)*_u8s+3jxnA!w@cHGZfYdmv?kWYVW*R!M|RNS2Y z`y)S7tG9DI+OKcP>6dV%QmJ7^=~>c={UivA@Xtq4hd6P@VnrUXe%=w~ZEOYaW$K)P{|X)@I)m)yMVWrJXt{vTGr?>jYTZ#y#`K z+9k!cnNE8<-p@fFGROTaB2hgRCPt4Q6MCo<&f|tRIJTbb)9$QDncpG$v*FyD zW|T$LmUF>ZplOrK*r$%kD25qMqk#5ou*);6Ry**}&OoLLx+@uv_pGk!YBj&3pE`J4 zR-Bf#{f2G_Ce(kmd`OR4`J!?QbQ7+~y&8px#u58$k4#F`&8Gw}{ND{6lpNOCVK-I> zT?`2}l(S`lSGAi@ZFqKcBKG1n?ckn-uAPeH8?8~;_v@j^FWM>ROt% zM`#8ii=Cmhmz{dAWYQBk>1EDJKWkF${Wq5wS%AbG1Ew+U<4-YH?ikHq+YnW!uM!;E q{jpaa61jM9fI=A43m{H~Fe-X!2h!YK=+& diff --git a/api/resources/images/sidebar_border.png b/api/resources/images/sidebar_border.png deleted file mode 100644 index ea6cd700be849c020b74c06ca2c4ed521b744cd6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2967 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 LQ|<2BoVog6l3=FD diff --git a/api/resources/images/swirl_divider.png b/api/resources/images/swirl_divider.png deleted file mode 100644 index f3e9f6c6af3c18fc84c25594f3434d1a1031d209..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1043 zcmV+u1nm2XP)R?59o%`Dv8?v^mBYql_}fD5H#NI5wfv&DMR<8C9Dp z{b^e^v-L~bZ0nk)O`A)u`Tjk3d*_zexpnOpD_QReFPGfsbI(Jc>&NrlJ%{E(Q9;-b z9q7jm45JSYQ`~`G3_->K4qMvj#%0L3g428Sc?1%?7=+vCM~sE=8@jGH&GvshVPEvm zuSH*c-P)d9kEdq7Y^sZ#)A0eP(1UxQBkI!)H9fhqwH=%fMT?wM(2p*R2i9YcR+Yqy zZ_&iU!kUt)xA76(mi`I!|$Xw#$v$P9b~8475=|Z&~7<%s`id#Onq0IY);j=j?VSUp1~rWIO$` z*6tqvAf2&P?h}RfjNQjb__xKg9WE0$qyxqa*~Z4;Z$bjPjm6<_f)BEdc_AGzZn#X^ zjoAQPCT>Uvj2E(vjlti91pfF_TT(MC{F788@5l4asGiOje~ITyWjzp%89BT((sRYK zLDPQbD5v*FmAX^+HF5=7yccVKFx2r7#*fEcGAMZ(64*XE2`5HQG=)9{XK?JWIX9BLR=y z$4C&*JcZW05!;wiE;E~4F})49I*D1{jz1*dXL^HPfV4vaO|a#tk>i8Yl5=rgO_>X5 z&klXM>2H$UHoK3JAd08Zx;LYT<@*K&Z;RhS$nZkODlcsUxnk)(dHwbL>&aX}XU3|T z_HkZ=gyF?-Y=-uV>=|to&=9Ub!Vo5yeNNSu{_OFr@H>kUNOeB8PL0yffZfMN5XDny z{TtHFp39J$&Tp>8k{@cD*4ZrohCP=NVt({k3oef`!?hwxp2DX2cOfPDh&SX9iA~}x zX1QLECbKGq^fhfhF-K@?BnKU%_L z05>3G2*-EHcff<2kTHlpOU_ALhK#H5z-eit4').hide().insertAfter("body")[0].contentWindow;q=function(){return a(n.document[c][l])};o=function(u,s){if(u!==s){var t=n.document;t.open().close();t[c].hash="#"+u}};o(a())}}m.start=function(){if(r){return}var t=a();o||p();(function s(){var v=a(),u=q(t);if(v!==t){o(t=v,u);$(i).trigger(d)}else{if(u!==t){i[c][l]=i[c][l].replace(/#.*/,"")+"#"+u}}r=setTimeout(s,$[d+"Delay"])})()};m.stop=function(){if(!n){r&&clearTimeout(r);r=0}};return m})()})(jQuery,this); \ No newline at end of file diff --git a/api/resources/javascripts/bootstrap.js b/api/resources/javascripts/bootstrap.js deleted file mode 100644 index 79241e74..00000000 --- a/api/resources/javascripts/bootstrap.js +++ /dev/null @@ -1,389 +0,0 @@ -/* ============================================================ - * bootstrap-dropdown.js v2.1.1 - * http://twitter.github.com/bootstrap/javascript.html#dropdowns - * ============================================================ - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */ - - -!function ($) { - - "use strict"; // jshint ;_; - - - /* DROPDOWN CLASS DEFINITION - * ========================= */ - - var toggle = '[data-toggle=dropdown]' - , Dropdown = function (element) { - var $el = $(element).on('click.dropdown.data-api', this.toggle) - $('html').on('click.dropdown.data-api', function () { - $el.parent().removeClass('open') - }) - } - - Dropdown.prototype = { - - constructor: Dropdown - - , toggle: function (e) { - var $this = $(this) - , $parent - , isActive - - if ($this.is('.disabled, :disabled')) return - - $parent = getParent($this) - - isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - $parent.toggleClass('open') - $this.focus() - } - - return false - } - - , keydown: function (e) { - var $this - , $items - , $active - , $parent - , isActive - , index - - if (!/(38|40|27)/.test(e.keyCode)) return - - $this = $(this) - - e.preventDefault() - e.stopPropagation() - - if ($this.is('.disabled, :disabled')) return - - $parent = getParent($this) - - isActive = $parent.hasClass('open') - - if (!isActive || (isActive && e.keyCode == 27)) return $this.click() - - $items = $('[role=menu] li:not(.divider) a', $parent) - - if (!$items.length) return - - index = $items.index($items.filter(':focus')) - - if (e.keyCode == 38 && index > 0) index-- // up - if (e.keyCode == 40 && index < $items.length - 1) index++ // down - if (!~index) index = 0 - - $items - .eq(index) - .focus() - } - - } - - function clearMenus() { - getParent($(toggle)) - .removeClass('open') - } - - function getParent($this) { - var selector = $this.attr('data-target') - , $parent - - if (!selector) { - selector = $this.attr('href') - selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - $parent = $(selector) - $parent.length || ($parent = $this.parent()) - - return $parent - } - - - /* DROPDOWN PLUGIN DEFINITION - * ========================== */ - - $.fn.dropdown = function (option) { - return this.each(function () { - var $this = $(this) - , data = $this.data('dropdown') - if (!data) $this.data('dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - $.fn.dropdown.Constructor = Dropdown - - - /* APPLY TO STANDARD DROPDOWN ELEMENTS - * =================================== */ - - $(function () { - $('html') - .on('click.dropdown.data-api touchstart.dropdown.data-api', clearMenus) - $('body') - .on('click.dropdown touchstart.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) - .on('click.dropdown.data-api touchstart.dropdown.data-api' , toggle, Dropdown.prototype.toggle) - .on('keydown.dropdown.data-api touchstart.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown) - }) - -}(window.jQuery); -/* ======================================================== - * bootstrap-tab.js v2.1.1 - * http://twitter.github.com/bootstrap/javascript.html#tabs - * ======================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ======================================================== */ - - -!function ($) { - - "use strict"; // jshint ;_; - - - /* TAB CLASS DEFINITION - * ==================== */ - - var Tab = function (element) { - this.element = $(element) - } - - Tab.prototype = { - - constructor: Tab - - , show: function () { - var $this = this.element - , $ul = $this.closest('ul:not(.dropdown-menu)') - , selector = $this.attr('data-target') - , previous - , $target - , e - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 - } - - if ( $this.parent('li').hasClass('active') ) return - - previous = $ul.find('.active a').last()[0] - - e = $.Event('show', { - relatedTarget: previous - }) - - $this.trigger(e) - - if (e.isDefaultPrevented()) return - - $target = $(selector) - - this.activate($this.parent('li'), $ul) - this.activate($target, $target.parent(), function () { - $this.trigger({ - type: 'shown' - , relatedTarget: previous - }) - }) - } - - , activate: function ( element, container, callback) { - var $active = container.find('> .active') - , transition = callback - && $.support.transition - && $active.hasClass('fade') - - function next() { - $active - .removeClass('active') - .find('> .dropdown-menu > .active') - .removeClass('active') - - element.addClass('active') - - if (transition) { - element[0].offsetWidth // reflow for transition - element.addClass('in') - } else { - element.removeClass('fade') - } - - if ( element.parent('.dropdown-menu') ) { - element.closest('li.dropdown').addClass('active') - } - - callback && callback() - } - - transition ? - $active.one($.support.transition.end, next) : - next() - - $active.removeClass('in') - } - } - - - /* TAB PLUGIN DEFINITION - * ===================== */ - - $.fn.tab = function ( option ) { - return this.each(function () { - var $this = $(this) - , data = $this.data('tab') - if (!data) $this.data('tab', (data = new Tab(this))) - if (typeof option == 'string') data[option]() - }) - } - - $.fn.tab.Constructor = Tab - - - /* TAB DATA-API - * ============ */ - - $(function () { - $('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { - e.preventDefault() - $(this).tab('show') - }) - }) - -}(window.jQuery); -/* ========================================================== - * bootstrap-affix.js v2.1.1 - * http://twitter.github.com/bootstrap/javascript.html#affix - * ========================================================== - * Copyright 2012 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - - -!function ($) { - - "use strict"; // jshint ;_; - - - /* AFFIX CLASS DEFINITION - * ====================== */ - - var Affix = function (element, options) { - this.options = $.extend({}, $.fn.affix.defaults, options) - this.$window = $(window).on('scroll.affix.data-api', $.proxy(this.checkPosition, this)) - this.$element = $(element) - this.checkPosition() - } - - Affix.prototype.checkPosition = function () { - if (!this.$element.is(':visible')) return - - var scrollHeight = $(document).height() - , scrollTop = this.$window.scrollTop() - , position = this.$element.offset() - , offset = this.options.offset - , offsetBottom = offset.bottom - , offsetTop = offset.top - , reset = 'affix affix-top affix-bottom' - , affix - - if (typeof offset != 'object') offsetBottom = offsetTop = offset - if (typeof offsetTop == 'function') offsetTop = offset.top() - if (typeof offsetBottom == 'function') offsetBottom = offset.bottom() - - affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? - false : offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? - 'bottom' : offsetTop != null && scrollTop <= offsetTop ? - 'top' : false - - if (this.affixed === affix) return - - this.affixed = affix - this.unpin = affix == 'bottom' ? position.top - scrollTop : null - - this.$element.removeClass(reset).addClass('affix' + (affix ? '-' + affix : '')) - } - - - /* AFFIX PLUGIN DEFINITION - * ======================= */ - - $.fn.affix = function (option) { - return this.each(function () { - var $this = $(this) - , data = $this.data('affix') - , options = typeof option == 'object' && option - if (!data) $this.data('affix', (data = new Affix(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - $.fn.affix.Constructor = Affix - - $.fn.affix.defaults = { - offset: 0 - } - - - /* AFFIX DATA-API - * ============== */ - - $(window).on('load', function () { - $('[data-spy="affix"]').each(function () { - var $spy = $(this) - , data = $spy.data() - - data.offset = data.offset || {} - - data.offsetBottom && (data.offset.bottom = data.offsetBottom) - data.offsetTop && (data.offset.top = data.offsetTop) - - $spy.affix(data) - }) - }) - - -}(window.jQuery); \ No newline at end of file diff --git a/api/resources/javascripts/clicker.js b/api/resources/javascripts/clicker.js deleted file mode 100644 index 90e7e12c..00000000 --- a/api/resources/javascripts/clicker.js +++ /dev/null @@ -1,69 +0,0 @@ -function setupClicker() { - // when hovering over arrow, add highlight (only if inactive) - $("i.methodToggle").hover(function () { - if (!$("i.methodToggle").hasClass('active')) - $(this).addClass("methodToggleHover"); - }, - function () { - $(this).removeClass("methodToggleHover"); - } - ); - - function handleClick(e, linkHref) { - //if (linkHref.indexOf("nav=api&api=") >= 0) - // return; - if (linkHref == "api") - return; - - e.preventDefault(); - - var dstElem; - if (linkHref) { - dstElem = $("article[id='" + linkHref + "']"); - } - - var $article = (dstElem || $(this)).closest('.article'), - $arrow = $('i.methodClicker', $article); - - if (!$article.hasClass('methodToggleOpen') || this.force) { - $article.addClass('methodToggleOpen'); - $arrow.removeClass('inactive').addClass('active'); - - if (!$arrow[0]) - return; - - var data = $arrow[0].id.replace(/^js_/, ""); - //var state = {}; - //state.section = data; - //$.bbq.pushState(state); - - scrollTo(null, data); - } - else { - $article.removeClass('methodToggleOpen'); - $arrow.removeClass('active').addClass('inactive'); - } - } - - function transformHash(e) { - // some bs to figure out link hash - var hashId = (e.srcElement ? e.srcElement.href : (e.hash || e.target.href)) || e.currentTarget.hash; - - handleClick(e, hashId.substring(hashId.indexOf("#") + 1)); - } - - // for the arrow - $("i.methodToggle").click(handleClick); - - // for the signature - $('.member-name').click(handleClick); - - // for the top dropdown - $('li.memberLink a').click(transformHash); - - //$('a[href^="#"]').click(transformHash); - - $('.related-to', '.metaInfo').click(function(){ - location.hash = $(this).find('a').attr('href').split('#')[1]; - }); -} \ No newline at end of file diff --git a/api/resources/javascripts/disqus-ext.js b/api/resources/javascripts/disqus-ext.js deleted file mode 100644 index 6bb7ff4e..00000000 --- a/api/resources/javascripts/disqus-ext.js +++ /dev/null @@ -1,17 +0,0 @@ -function setupDisqus(href) { - var disqus_shortname = 'aceapi'; - - //var paths = window.location.pathname.split("/"); - //var fileName = paths[paths.length - 2] + "/" + paths[paths.length - 1]; - - //var disqus_identifier = fileName; - var disqus_identifier = href.substring(2); - - (function() { - if (document.getElementById("disqusScript") === null) { - var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; - dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js'; - (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); - } - })(); -} \ No newline at end of file diff --git a/api/resources/javascripts/ga.js b/api/resources/javascripts/ga.js deleted file mode 100644 index e381972d..00000000 --- a/api/resources/javascripts/ga.js +++ /dev/null @@ -1,9 +0,0 @@ - var _gaq = _gaq || []; - _gaq.push(['_setAccount', 'UA-31998201-1']); - _gaq.push(['_trackPageview']); - - (function() { - var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; - ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; - var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); - })(); \ No newline at end of file diff --git a/api/resources/javascripts/jquery-scrollspy.js b/api/resources/javascripts/jquery-scrollspy.js deleted file mode 100644 index 71b4a363..00000000 --- a/api/resources/javascripts/jquery-scrollspy.js +++ /dev/null @@ -1,98 +0,0 @@ -/*! - * jQuery Scrollspy Plugin - * Author: @sxalexander - * Licensed under the MIT license - */ - - -;(function ( $, window, document, undefined ) { - - $.fn.extend({ - scrollspy: function ( options ) { - - var defaults = { - min: 0, - max: 0, - mode: 'vertical', - buffer: 0, - container: window, - onEnter: options.onEnter ? options.onEnter : [], - onLeave: options.onLeave ? options.onLeave : [], - onTick: options.onTick ? options.onTick : [] - } - - var options = $.extend( {}, defaults, options ); - - return this.each(function (i) { - - var element = this; - var o = options; - var $container = $(o.container); - var mode = o.mode; - var buffer = o.buffer; - var enters = leaves = 0; - var inside = false; - - /* add listener to container */ - $container.bind('scroll', function(e){ - var position = {top: $(this).scrollTop(), left: $(this).scrollLeft()}; - var xy = (mode == 'vertical') ? position.top + buffer : position.left + buffer; - var max = o.max; - var min = o.min; - - /* fix max */ - if($.isFunction(o.max)){ - max = o.max(); - } - - /* fix max */ - if($.isFunction(o.min)){ - min = o.min(); - } - - if(max == 0){ - max = (mode == 'vertical') ? $container.height() : $container.outerWidth() + $(element).outerWidth(); - } - - /* if we have reached the minimum bound but are below the max ... */ - if(xy >= o.min && xy <= max){ - /* trigger enter event */ - if(!inside){ - inside = true; - enters++; - - /* fire enter event */ - $(element).trigger('scrollEnter', {position: position}) - if($.isFunction(o.onEnter)){ - o.onEnter(element, position); - } - - } - - /* triger tick event */ - $(element).trigger('scrollTick', {position: position, inside: inside, enters: enters, leaves: leaves}) - if($.isFunction(o.onTick)){ - o.onTick(element, position, inside, enters, leaves); - } - }else{ - - if(inside){ - inside = false; - leaves++; - /* trigger leave event */ - $(element).trigger('scrollLeave', {position: position, leaves:leaves}) - - if($.isFunction(o.onLeave)){ - o.onLeave(element, position); - } - } - } - }); - - }); - } - - }) - - -})( jQuery, window ); diff --git a/api/resources/javascripts/jquery.collapse.js b/api/resources/javascripts/jquery.collapse.js deleted file mode 100644 index 427ee5fa..00000000 --- a/api/resources/javascripts/jquery.collapse.js +++ /dev/null @@ -1,151 +0,0 @@ -/*! - * Collapse plugin for jQuery - * http://github.com/danielstocks/jQuery-Collapse/ - * - * @author Daniel Stocks (http://webcloud.se) - * @version 0.9.1 - * @updated 17-AUG-2010 - * - * Copyright 2010, Daniel Stocks - * Released under the MIT, BSD, and GPL Licenses. - */ - -(function($) { - - // Use a cookie counter to allow multiple instances of the plugin - var cookieCounter = 0; - - $.fn.extend({ - collapse: function(options) { - - var defaults = { - head : "h3", - group : "div, ul", - cookieName : "collapse", - // Default function for showing content - show: function() { - this.show(); - }, - // Default function for hiding content - hide: function() { - this.hide(); - } - }; - var op = $.extend(defaults, options); - - // Default CSS classes - var active = "active", - inactive = "inactive"; - - return this.each(function() { - - // Increment coookie counter to ensure cookie name integrity - cookieCounter++; - var obj = $(this), - // Find all headers and wrap them in for accessibility. - sections = obj.find(op.head).wrapInner(''), - l = sections.length, - cookie = op.cookieName + "_" + cookieCounter; - // Locate all panels directly following a header - var panel = obj.find(op.head).map(function() { - var head = $(this) - if(!head.hasClass(active)) { - return head.next(op.group).hide()[0]; - } - return head.next(op.group)[0]; - }); - - // Bind event for showing content - obj.bind("show", function(e, bypass) { - var obj = $(e.target); - // ARIA attribute - obj.attr('aria-hidden', false) - .prev() - .removeClass(inactive) - .addClass(active); - // Bypass method for instant display - if(bypass) { - obj.show(); - } else { - op.show.call(obj); - } - }); - - // Bind event for hiding content - obj.bind("hide", function(e, bypass) { - var obj = $(e.target); - obj.attr('aria-hidden', true) - .prev() - .removeClass(active) - .addClass(inactive); - if(bypass) { - obj.hide(); - } else { - op.hide.call(obj); - } - }); - - // Look for existing cookies - if(cookieSupport) { - for (var c=0;c<=l;c++) { - var val = $.cookie(cookie + c); - // Show content if associating cookie is found - if ( val == c + "open" ) { - panel.eq(c).trigger('show', [true]); - // Hide content - } else if ( val == c + "closed") { - panel.eq(c).trigger('hide', [true]); - } - } - } - - // Delegate click event to show/hide content. - obj.bind("click", function(e) { - var t = $(e.target); - // Check if header was clicked - if(!t.is(op.head)) { - // What about link inside header. - if ( t.parent().is(op.head) ) { - t = t.parent(); - } else { - return; - } - e.preventDefault(); - } - // Figure out what position the clicked header has. - var num = sections.index(t), - cookieName = cookie + num, - cookieVal = num, - content = t.next(op.group); - // If content is already active, hide it. - if(t.hasClass(active)) { - content.trigger('hide'); - cookieVal += 'closed'; - if(cookieSupport) { - $.cookie(cookieName, cookieVal, { path: '/', expires: 10 }); - } - return; - } - // Otherwise show it. - content.trigger('show'); - cookieVal += 'open'; - if(cookieSupport) { - $.cookie(cookieName, cookieVal, { path: '/', expires: 10 }); - } - }); - }); - } - }); - - // Make sure can we eat cookies without getting into trouble. - var cookieSupport = (function() { - try { - $.cookie('x', 'x', { path: '/', expires: 10 }); - $.cookie('x', null); - } - catch(e) { - return false; - } - return true; - })(); -})(jQuery); \ No newline at end of file diff --git a/api/resources/javascripts/jquery.cookie.js b/api/resources/javascripts/jquery.cookie.js deleted file mode 100644 index 6df1faca..00000000 --- a/api/resources/javascripts/jquery.cookie.js +++ /dev/null @@ -1,96 +0,0 @@ -/** - * Cookie plugin - * - * Copyright (c) 2006 Klaus Hartl (stilbuero.de) - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - */ - -/** - * Create a cookie with the given name and value and other optional parameters. - * - * @example $.cookie('the_cookie', 'the_value'); - * @desc Set the value of a cookie. - * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); - * @desc Create a cookie with all available options. - * @example $.cookie('the_cookie', 'the_value'); - * @desc Create a session cookie. - * @example $.cookie('the_cookie', null); - * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain - * used when the cookie was set. - * - * @param String name The name of the cookie. - * @param String value The value of the cookie. - * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. - * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. - * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. - * If set to null or omitted, the cookie will be a session cookie and will not be retained - * when the the browser exits. - * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). - * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). - * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will - * require a secure protocol (like HTTPS). - * @type undefined - * - * @name $.cookie - * @cat Plugins/Cookie - * @author Klaus Hartl/klaus.hartl@stilbuero.de - */ - -/** - * Get the value of a cookie with the given name. - * - * @example $.cookie('the_cookie'); - * @desc Get the value of a cookie. - * - * @param String name The name of the cookie. - * @return The value of the cookie. - * @type String - * - * @name $.cookie - * @cat Plugins/Cookie - * @author Klaus Hartl/klaus.hartl@stilbuero.de - */ -jQuery.cookie = function(name, value, options) { - if (typeof value != 'undefined') { // name and value given, set cookie - options = options || {}; - if (value === null) { - value = ''; - options.expires = -1; - } - var expires = ''; - if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { - var date; - if (typeof options.expires == 'number') { - date = new Date(); - date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); - } else { - date = options.expires; - } - expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE - } - // CAUTION: Needed to parenthesize options.path and options.domain - // in the following expressions, otherwise they evaluate to undefined - // in the packed version for some reason... - var path = options.path ? '; path=' + (options.path) : ''; - var domain = options.domain ? '; domain=' + (options.domain) : ''; - var secure = options.secure ? '; secure' : ''; - document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); - } else { // only name given, get cookie - var cookieValue = null; - if (document.cookie && document.cookie != '') { - var cookies = document.cookie.split(';'); - for (var i = 0; i < cookies.length; i++) { - var cookie = jQuery.trim(cookies[i]); - // Does this cookie string begin with the name we want? - if (cookie.substring(0, name.length + 1) == (name + '=')) { - cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); - break; - } - } - } - return cookieValue; - } -}; \ No newline at end of file diff --git a/api/resources/javascripts/jquery.js b/api/resources/javascripts/jquery.js deleted file mode 100644 index 3ca5e0f5..00000000 --- a/api/resources/javascripts/jquery.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.7 jquery.com | jquery.org/license */ -(function(a,b){function cA(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cx(a){if(!cm[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cn||(cn=c.createElement("iframe"),cn.frameBorder=cn.width=cn.height=0),b.appendChild(cn);if(!co||!cn.createElement)co=(cn.contentWindow||cn.contentDocument).document,co.write((c.compatMode==="CSS1Compat"?"":"")+""),co.close();d=co.createElement(a),co.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cn)}cm[a]=e}return cm[a]}function cw(a,b){var c={};f.each(cs.concat.apply([],cs.slice(0,b)),function(){c[this]=a});return c}function cv(){ct=b}function cu(){setTimeout(cv,0);return ct=f.now()}function cl(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ck(){try{return new a.XMLHttpRequest}catch(b){}}function ce(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bB(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function br(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bi,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bq(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bp(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bp)}function bp(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bo(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bn(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bm(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(){return!0}function M(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z]|[0-9])/ig,x=/^-ms-/,y=function(a,b){return(b+"").toUpperCase()},z=d.userAgent,A,B,C,D=Object.prototype.toString,E=Object.prototype.hasOwnProperty,F=Array.prototype.push,G=Array.prototype.slice,H=String.prototype.trim,I=Array.prototype.indexOf,J={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7",length:0,size:function(){return this.length},toArray:function(){return G.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?F.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),B.add(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(G.apply(this,arguments),"slice",G.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:F,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;B.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!B){B=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",C,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",C),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&K()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return a!=null&&m.test(a)&&!isNaN(a)},type:function(a){return a==null?String(a):J[D.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!E.call(a,"constructor")&&!E.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||E.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(x,"ms-").replace(w,y)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
                                                                                                                                                                                                                                                                                                                                                                                                                                                              a