- added tooltip window

git-svn-id: http://moon:8086/svn/software/trunk/projects/RBM@547 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-10-01 17:51:15 +00:00
parent 4dc1a01c34
commit 82e7286848
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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"));
+2 -1
View File
@@ -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]
//==============================================================================