mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-05 03:50:07 +00:00
Tweak to TextInputTarget. Code clean-ups. Jucer development.
This commit is contained in:
parent
27d1d9a9d9
commit
7ed446b5fd
53 changed files with 1019 additions and 909 deletions
|
|
@ -348,6 +348,11 @@ void CodeEditorComponent::loadContent (const String& newContent)
|
|||
scrollToLine (0);
|
||||
}
|
||||
|
||||
bool CodeEditorComponent::isTextInputActive() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
void CodeEditorComponent::codeDocumentChanged (const CodeDocument::Position& affectedTextStart,
|
||||
const CodeDocument::Position& affectedTextEnd)
|
||||
|
|
|
|||
|
|
@ -253,6 +253,8 @@ public:
|
|||
/** @internal */
|
||||
void codeDocumentChanged (const CodeDocument::Position& affectedTextStart,
|
||||
const CodeDocument::Position& affectedTextEnd);
|
||||
/** @internal */
|
||||
bool isTextInputActive() const;
|
||||
|
||||
//==============================================================================
|
||||
juce_UseDebuggingNewOperator
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue