mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-01 03:10:06 +00:00
Small fix to audio plugin host demo; updated plugin characteristics file to allow a standalone build flag; added VST speaker arrangement fixes as suggested by Andy; added some options for ignoring hidden files to the file browser comp; minor update to the Variant class.
This commit is contained in:
parent
f0c030e330
commit
65e1eabca3
11 changed files with 129 additions and 45 deletions
|
|
@ -49587,6 +49587,11 @@ public:
|
|||
*/
|
||||
void setIgnoresHiddenFiles (const bool shouldIgnoreHiddenFiles);
|
||||
|
||||
/** Returns true if hidden files are ignored.
|
||||
@see setIgnoresHiddenFiles
|
||||
*/
|
||||
bool ignoresHiddenFiles() const throw() { return ignoreHiddenFiles; }
|
||||
|
||||
/** Contains cached information about one of the files in a DirectoryContentsList.
|
||||
*/
|
||||
struct FileInfo
|
||||
|
|
@ -49965,7 +49970,6 @@ public:
|
|||
void buttonClicked (Button* b);
|
||||
/** @internal */
|
||||
void comboBoxChanged (ComboBox*);
|
||||
|
||||
/** @internal */
|
||||
void textEditorTextChanged (TextEditor& editor);
|
||||
/** @internal */
|
||||
|
|
@ -49974,7 +49978,8 @@ public:
|
|||
void textEditorEscapeKeyPressed (TextEditor& editor);
|
||||
/** @internal */
|
||||
void textEditorFocusLost (TextEditor& editor);
|
||||
|
||||
/** @internal */
|
||||
bool keyPressed (const KeyPress& key);
|
||||
/** @internal */
|
||||
void selectionChanged();
|
||||
/** @internal */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue