Skip to content

Instantly share code, notes, and snippets.

@wiccy46
Created September 22, 2019 15:19
Show Gist options
  • Select an option

  • Save wiccy46/4fc655897c35a639be1a2750bf0dc4cf to your computer and use it in GitHub Desktop.

Select an option

Save wiccy46/4fc655897c35a639be1a2750bf0dc4cf to your computer and use it in GitHub Desktop.
[Juce_logger]Juce Logger on GUI #c++ #juce
TextEditor diagnosticsBox;
void logMessage(const String& m){
diagnosticsBox.moveCaretToEnd();
diagnosticsBox.insertTextAtCaret(m + newLine);
}
// resized()
diagnosticsBox.setBounds;
// Usage:
logMessage("msg");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment