Hello,
In my application, my main class is
class MainComponent : public juce::AudioAppComponent, public juce::Slider::Listener, public juce::ComboBox::Listener, public juce::TextButton::Listener, public juce::TextEditor::Listener
and inside this class,
I created a DocumentWindow as follows
juce::DocumentWindow* buttonwindow
and in that buttonwindow,
I put TextButtons, Sliders, ComboBoxes etc
But in the JUCE document, it is said
don’t this this
Instead, it says, create a component inside that buttonwindow
Then, what is the use case of DocumentWindow (without putting childs inside directly)?
I really wonder
===========================-------------------==============
Also, there is another question,
the JUCE document also says,
do not resize the DocumentWindow
What is the reason for this?
Thanks
