From 82e728684819bea3be76c575b6f84265c26ece92 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Tue, 1 Oct 2019 17:51:15 +0000 Subject: [PATCH] - added tooltip window git-svn-id: http://moon:8086/svn/software/trunk/projects/RBM@547 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Source/MainComponent.cpp | 3 ++- Source/MainComponent.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/MainComponent.cpp b/Source/MainComponent.cpp index ffb6e6f..9fde12d 100644 --- a/Source/MainComponent.cpp +++ b/Source/MainComponent.cpp @@ -43,7 +43,8 @@ MainComponent::MainComponent () : Thread("RBM"), m_pRbmComponentCurr(nullptr), m_weightsCurr(nullptr), - m_layers(this) + m_layers(this), + m_toolTipWindow(this) { addAndMakeVisible (trainButton = new TextButton ("Train button")); trainButton->setButtonText (TRANS("Train")); diff --git a/Source/MainComponent.h b/Source/MainComponent.h index 0273415..34b4b5a 100644 --- a/Source/MainComponent.h +++ b/Source/MainComponent.h @@ -88,6 +88,7 @@ private: const juce::String& getBaseDir(); void run(); String m_baseDir; + TooltipWindow m_toolTipWindow; void clearTraining() { m_layers.clear(); @@ -110,7 +111,7 @@ private: } void updateControls(); - + //[/UserVariables] //==============================================================================