1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added a callback method to FileBrowserListener.

This commit is contained in:
Julian Storer 2011-08-18 15:59:23 +01:00
parent 172d2a1c8b
commit 89455b18cb
9 changed files with 76 additions and 88 deletions

View file

@ -177,27 +177,29 @@ public:
/** @internal */
void resized();
/** @internal */
void buttonClicked (Button* b);
void buttonClicked (Button*);
/** @internal */
void comboBoxChanged (ComboBox*);
/** @internal */
void textEditorTextChanged (TextEditor& editor);
void textEditorTextChanged (TextEditor&);
/** @internal */
void textEditorReturnKeyPressed (TextEditor& editor);
void textEditorReturnKeyPressed (TextEditor&);
/** @internal */
void textEditorEscapeKeyPressed (TextEditor& editor);
void textEditorEscapeKeyPressed (TextEditor&);
/** @internal */
void textEditorFocusLost (TextEditor& editor);
void textEditorFocusLost (TextEditor&);
/** @internal */
bool keyPressed (const KeyPress& key);
bool keyPressed (const KeyPress&);
/** @internal */
void selectionChanged();
/** @internal */
void fileClicked (const File& f, const MouseEvent& e);
void fileClicked (const File&, const MouseEvent&);
/** @internal */
void fileDoubleClicked (const File& f);
void fileDoubleClicked (const File&);
/** @internal */
bool isFileSuitable (const File& file) const;
void browserRootChanged (const File&);
/** @internal */
bool isFileSuitable (const File&) const;
/** @internal */
bool isDirectorySuitable (const File&) const;