From 3f2dc73d5a565121db00f4a0f050a48910b51623 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 4 Apr 2025 13:24:41 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- doc/en/classTQextScintilla.html | 96 ++++++++++++++++++++--------------------- 1 file changed, 48 insertions(+), 48 deletions(-) (limited to 'doc/en/classTQextScintilla.html') diff --git a/doc/en/classTQextScintilla.html b/doc/en/classTQextScintilla.html index 17d8dc8..2eea820 100644 --- a/doc/en/classTQextScintilla.html +++ b/doc/en/classTQextScintilla.html @@ -172,7 +172,7 @@ Inherits TQextScintillaBasevirtual void cut ()
  • virtual void ensureCursorVisible ()
  • virtual void ensureLineVisible (int line) -
  • virtual void foldAll (bool children=FALSE) +
  • virtual void foldAll (bool children=false)
  • virtual void foldLine (int line)
  • virtual void indent (int line)
  • virtual void insert (const TQString &text) @@ -183,7 +183,7 @@ Inherits TQextScintillaBasevirtual void removeSelectedText ()
  • virtual void resetSelectionBackgroundColor ()
  • virtual void resetSelectionForegroundColor () -
  • virtual void selectAll (bool select=TRUE) +
  • virtual void selectAll (bool select=true)
  • virtual void selectToMatchingBrace ()
  • virtual void setAutoCompletionCaseSensitivity (bool cs)
  • virtual void setAutoCompletionReplaceWord (bool replace) @@ -274,7 +274,7 @@ Inherits TQextScintillaBaseEdgeMode edgeMode ()
  • EolMode eolMode ()
  • bool eolVisibility () -
  • virtual bool findFirst (const TQString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=TRUE, int line=-1, int index=-1, bool show=TRUE) +
  • virtual bool findFirst (const TQString &expr, bool re, bool cs, bool wo, bool wrap, bool forward=true, int line=-1, int index=-1, bool show=true)
  • virtual bool findNext ()
  • int firstVisibleLine ()
  • FoldStyle folding () const @@ -751,7 +751,7 @@ Destroys the TQextScintilla in

    -Returns TRUE if auto-completion lists are case sensitive.

    +Returns true if auto-completion lists are case sensitive.

    See also:
    setAutoCompletionCaseSensitivity()
    @@ -793,7 +793,7 @@ Returns true if auto-completion fill-up characters are enabled.

    -Returns TRUE if the rest of the word to the right of the current cursor is removed when an item from an auto-completion list is selected.

    +Returns true if the rest of the word to the right of the current cursor is removed when an item from an auto-completion list is selected.

    See also:
    setAutoCompletionReplaceWord()
    @@ -814,7 +814,7 @@ Returns TRUE if the rest of the word to the right of the current cursor is remov

    -Returns TRUE if the only item in an auto-completion list with a single entry is automatically used and the list not displayed.

    +Returns true if the only item in an auto-completion list with a single entry is automatically used and the list not displayed.

    See also:
    setAutoCompletionShowSingle()
    @@ -877,7 +877,7 @@ Returns the current threshold for the automatic display of the auto-completion l

    -Returns TRUE if auto-indentation is enabled.

    +Returns true if auto-indentation is enabled.

    See also:
    setAutoIndent()
    @@ -898,7 +898,7 @@ Returns TRUE if auto-indentation is enabled.

    -Returns TRUE if the backspace key unindents a line instead of deleting a character. The default is FALSE.

    +Returns true if the backspace key unindents a line instead of deleting a character. The default is false.

    See also:
    setBackspaceUnindents(), tabIndents(), setTabIndents()
    @@ -1199,7 +1199,7 @@ Returns the visibility of end-of-lines.

    - +

    @@ -1237,7 +1237,7 @@ Returns the visibility of end-of-lines.

    - + @@ -1255,7 +1255,7 @@ Returns the visibility of end-of-lines.

    - + @@ -1267,14 +1267,14 @@ Returns the visibility of end-of-lines.

    -Find the next occurrence of the string expr and return TRUE if expr was found, otherwise returns FALSE. If expr is found it becomes the current selection.

    -If re is TRUE then expr is interpreted as a regular expression rather than a simple string.

    -If cs is TRUE then the search is case sensitive.

    -If wo is TRUE then the search looks for whole word matches only, otherwise it searches for any matching text.

    -If wrap is TRUE then the search wraps around the end of the text.

    -If forward is TRUE (the default) then the search is forward from the starting position to the end of the text, otherwise it is backwards to the beginning of the text.

    +Find the next occurrence of the string expr and return true if expr was found, otherwise returns false. If expr is found it becomes the current selection.

    +If re is true then expr is interpreted as a regular expression rather than a simple string.

    +If cs is true then the search is case sensitive.

    +If wo is true then the search looks for whole word matches only, otherwise it searches for any matching text.

    +If wrap is true then the search wraps around the end of the text.

    +If forward is true (the default) then the search is forward from the starting position to the end of the text, otherwise it is backwards to the beginning of the text.

    If either line or index are negative (the default) then the search begins from the current cursor position. Otherwise the search begins at position index of line line.

    -If show is TRUE (the default) then any text found is made visible (ie. it is unfolded).

    +If show is true (the default) then any text found is made visible (ie. it is unfolded).

    See also:
    findNext(), replace()
    @@ -1432,7 +1432,7 @@ If there is a selection, *lineFrom is set to the line number in which t

    -Returns TRUE if some text is selected.

    +Returns true if some text is selected.

    See also:
    selectedText()
    @@ -1475,7 +1475,7 @@ Returns the number of characters that line line is indented by.

    -Returns TRUE if the display of indentation guides is enabled.

    +Returns true if the display of indentation guides is enabled.

    See also:
    setIndentationGuides()
    @@ -1496,7 +1496,7 @@ Returns TRUE if the display of indentation guides is enabled.

    -Returns TRUE if indentations are created using tabs and spaces, rather than just spaces. The default is TRUE.

    +Returns true if indentations are created using tabs and spaces, rather than just spaces. The default is true.

    See also:
    setIndentationsUseTabs()
    @@ -1538,7 +1538,7 @@ Returns the indentation width in characters. The default is 0 which means that t

    -Returns TRUE if a call tip is currently active. +Returns true if a call tip is currently active.

    @@ -1559,7 +1559,7 @@ Returns TRUE if a call tip is currently active.

    -Returns TRUE if an auto-completion or user defined list is currently active. +Returns true if an auto-completion or user defined list is currently active.

    @@ -1578,7 +1578,7 @@ Returns TRUE if an auto-completion or user defined list is currently active.

    -Returns TRUE if the text has been modified.

    +Returns true if the text has been modified.

    See also:
    setModified(), modificationChanged()
    @@ -1599,7 +1599,7 @@ Returns TRUE if the text has been modified.

    -Returns TRUE if the text edit is read-only.

    +Returns true if the text edit is read-only.

    See also:
    setReadOnly()
    @@ -1620,7 +1620,7 @@ Returns TRUE if the text edit is read-only.

    -Returns TRUE if there is something that can be redone.

    +Returns true if there is something that can be redone.

    See also:
    redo()
    @@ -1641,7 +1641,7 @@ Returns TRUE if there is something that can be redone.

    -Returns TRUE if there is something that can be undone.

    +Returns true if there is something that can be undone.

    See also:
    undo()
    @@ -1662,7 +1662,7 @@ Returns TRUE if there is something that can be undone.

    -Returns TRUE if text is interpreted as being UTF8 encoded. The default is to interpret the text as Latin1 encoded.

    +Returns true if text is interpreted as being UTF8 encoded. The default is to interpret the text as Latin1 encoded.

    See also:
    setUtf8()
    @@ -1789,7 +1789,7 @@ Returns the current language lexer used to style text. If it is 0 then syntax st

    -Returns TRUE if line numbers are enabled for margin margin.

    +Returns true if line numbers are enabled for margin margin.

    See also:
    setMarginLineNumbers(), TQextScintillaBase::SCI_GETMARGINTYPEN
    @@ -1833,7 +1833,7 @@ Returns the marker mask of margin margin.

    -Returns TRUE if margin margin is sensitive to mouse clicks.

    +Returns true if margin margin is sensitive to mouse clicks.

    See also:
    setMarginSensitivity(), marginClicked(), TQextScintillaBase::SCI_GETMARGINTYPEN
    @@ -2890,7 +2890,7 @@ The standard command set is returned.

    -Returns TRUE if the tab key indents a line instead of inserting a tab character. The default is TRUE.

    +Returns true if the tab key indents a line instead of inserting a tab character. The default is true.

    See also:
    setTabIndents(), backspaceUnindents(), setBackspaceUnindents()
    @@ -3231,7 +3231,7 @@ Ensures that the line number line is visible.

    - +

    bool  forward = TRUE, forward = true,
    bool  show = TRUE  show = true 
    @@ -3239,7 +3239,7 @@ Ensures that the line number line is visible. - + @@ -3474,7 +3474,7 @@ Resets the foreground colour of selected text to the default.

    - +

    virtual void TQextScintilla::foldAll ( bool  children = FALSE children = false  )  [virtual, slot]
    @@ -3482,7 +3482,7 @@ Resets the foreground colour of selected text to the default.

    - + @@ -3491,7 +3491,7 @@ Resets the foreground colour of selected text to the default.

    -If select is TRUE (the default) then all the text is selected. If select is FALSE then any currently selected text is deselected. +If select is true (the default) then all the text is selected. If select is false then any currently selected text is deselected.

    @@ -3530,7 +3530,7 @@ If the cursor is either side of a brace character then move it to the position o

    -If cs is TRUE then auto-completion lists are case sensitive. The default is TRUE.

    +If cs is true then auto-completion lists are case sensitive. The default is true.

    See also:
    autoCompletionCaseSensitivity()
    @@ -3552,7 +3552,7 @@ If cs is TRUE then auto-completion lists are case sensitive. The defaul

    -If replace is TRUE then when an item from an auto-completion list is selected, the rest of the word to the right of the current cursor is removed. The default is FALSE.

    +If replace is true then when an item from an auto-completion list is selected, the rest of the word to the right of the current cursor is removed. The default is false.

    See also:
    autoCompletionReplaceWord()
    @@ -3574,7 +3574,7 @@ If replace is TRUE then when an item from an auto-completion list is se

    -If single is TRUE then when there is only a single entry in an auto-completion list it is automatically used and the list is not displayed. This only has an effect when auto-completion is explicitly requested (using autoCompleteFromAPIs() and autoCompleteFromDocument()) and has no effect when auto-completion is triggered as the user types. The default is FALSE.

    +If single is true then when there is only a single entry in an auto-completion list it is automatically used and the list is not displayed. This only has an effect when auto-completion is explicitly requested (using autoCompleteFromAPIs() and autoCompleteFromDocument()) and has no effect when auto-completion is triggered as the user types. The default is false.

    See also:
    autoCompletionShowSingle()
    @@ -3640,7 +3640,7 @@ Sets the threshold for the automatic display of the auto-completion list as the

    -If autoindent is TRUE then auto-indentation is enabled. The default is FALSE.

    +If autoindent is true then auto-indentation is enabled. The default is false.

    See also:
    autoIndent()
    @@ -3684,7 +3684,7 @@ Sets the brace matching mode to bm. The default is NoBraceMatching.

    -If deindent is TRUE then the backspace key will unindent a line rather then delete a character.

    +If deindent is true then the backspace key will unindent a line rather then delete a character.

    See also:
    backspaceUnindents(), tabIndents(), setTabIndents()
    @@ -3866,7 +3866,7 @@ Sets the end-of-line mode to mode. The default is the platform's natura

    -If visible is TRUE then end-of-lines are made visible. The default is that they are invisible.

    +If visible is true then end-of-lines are made visible. The default is that they are invisible.

    See also:
    eolVisibility()
    @@ -4007,7 +4007,7 @@ Set the foreground colour of indentation guides to col.

    -If tabs is TRUE then indentations are created using tabs and spaces, rather than just spaces.

    +If tabs is true then indentations are created using tabs and spaces, rather than just spaces.

    See also:
    indentationsUseTabs()
    @@ -4294,7 +4294,7 @@ Sets the width of margin margin so that it is wide enough to display

    -Sets the modified state of the text edit to m. Note that it is only possible to clear the modified state (where m is FALSE). Attempts to set the modified state (where m is TRUE) are ignored.

    +Sets the modified state of the text edit to m. Note that it is only possible to clear the modified state (where m is false). Attempts to set the modified state (where m is true) are ignored.

    See also:
    isModified(), modificationChanged()
    @@ -4446,7 +4446,7 @@ Sets the foreground colour of selected text to col.

    -If indent is TRUE then the tab key will indent a line rather then insert a tab character.

    +If indent is true then the tab key will indent a line rather then insert a tab character.

    See also:
    tabIndents(), backspaceUnindents(), setBackspaceUnindents()
    @@ -4512,7 +4512,7 @@ Replaces all of the current text with text. Note that the undo/redo his

    -Sets the current text encoding. If cp is TRUE then UTF8 is used, otherwise Latin1 is used.

    +Sets the current text encoding. If cp is true then UTF8 is used, otherwise Latin1 is used.

    See also:
    isUtf8()
    @@ -4755,7 +4755,7 @@ This signal is emitted whenever the cursor position changes. line conta

    -This signal is emitted whenever text is selected or de-selected. yes is TRUE if text has been selected and FALSE if text has been deselected. If yes is TRUE then copy() can be used to copy the selection to the clipboard. If yes is FALSE then copy() does nothing.

    +This signal is emitted whenever text is selected or de-selected. yes is true if text has been selected and false if text has been deselected. If yes is true then copy() can be used to copy the selection to the clipboard. If yes is false then copy() does nothing.

    See also:
    copy(), selectionChanged()
    @@ -4835,7 +4835,7 @@ This signal is emitted whenever the user attempts to modify read-only text.

    -This signal is emitted whenever the modification state of the text changes. m is TRUE if the text has been modified.

    +This signal is emitted whenever the modification state of the text changes. m is true if the text has been modified.

    See also:
    isModified(), setModified()
    -- cgit v1.2.3
    virtual void TQextScintilla::selectAll ( bool  select = TRUE select = true  )  [virtual, slot]