OpenShot Library | OpenShotAudio  0.2.2
juce::FileFilter Class Referenceabstract

Interface for deciding which files are suitable for something. More...

#include <juce_FileFilter.h>

+ Inheritance diagram for juce::FileFilter:

Public Member Functions

 FileFilter (const String &filterDescription)
 Creates a filter with the given description. More...
 
virtual ~FileFilter ()
 Destructor. More...
 
const StringgetDescription () const noexcept
 Returns the description that the filter was created with. More...
 
virtual bool isFileSuitable (const File &file) const =0
 Should return true if this file is suitable for inclusion in whatever context the object is being used.
 
virtual bool isDirectorySuitable (const File &file) const =0
 Should return true if this directory is suitable for inclusion in whatever context the object is being used.
 

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

Definition at line 41 of file juce_FileFilter.h.

Constructor & Destructor Documentation

◆ FileFilter()

juce::FileFilter::FileFilter ( const String filterDescription)

Creates a filter with the given description.

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

Definition at line 26 of file juce_FileFilter.cpp.

◆ ~FileFilter()

juce::FileFilter::~FileFilter ( )
virtual

Destructor.

Definition at line 31 of file juce_FileFilter.cpp.

Member Function Documentation

◆ getDescription()

const String & juce::FileFilter::getDescription ( ) const
noexcept

Returns the description that the filter was created with.

Definition at line 35 of file juce_FileFilter.cpp.


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