openshot-audio  0.1.6
Public Member Functions | Protected Attributes | List of all members
juce::FileFilter Class Referenceabstract

#include <juce_core.h>

Inheritance diagram for juce::FileFilter:
juce::FileBrowserComponent juce::WildcardFileFilter

Public Member Functions

 FileFilter (const String &filterDescription)
 
virtual ~FileFilter ()
 
const StringgetDescription () const noexcept
 
virtual bool isFileSuitable (const File &file) const =0
 
virtual bool isDirectorySuitable (const File &file) const =0
 

Protected Attributes

String description
 

Detailed Description

Interface for deciding which files are suitable for something.

For example, this is used by DirectoryContentsList to select which files go into the list.

See also
WildcardFileFilter, DirectoryContentsList, FileListComponent, FileBrowserComponent

Constructor & Destructor Documentation

FileFilter::FileFilter ( const String filterDescription)

Creates a filter with the given description.

The description can be returned later with the getDescription() method.

FileFilter::~FileFilter ( )
virtual

Destructor.

Member Function Documentation

const String & FileFilter::getDescription ( ) const
noexcept

Returns the description that the filter was created with.

virtual bool juce::FileFilter::isDirectorySuitable ( const File file) const
pure virtual

Should return true if this directory is suitable for inclusion in whatever context the object is being used.

Implemented in juce::FileBrowserComponent, and juce::WildcardFileFilter.

virtual bool juce::FileFilter::isFileSuitable ( const File file) const
pure virtual

Should return true if this file is suitable for inclusion in whatever context the object is being used.

Implemented in juce::FileBrowserComponent, and juce::WildcardFileFilter.

Member Data Documentation

String juce::FileFilter::description
protected

The documentation for this class was generated from the following files: