A singleton class responsible for sharing content between apps and devices. More...
#include <juce_ContentSharer.h>
Public Member Functions | |
void | shareData (const MemoryBlock &mb, std::function< void(bool, const String &)> callback) |
A convenience function to share arbitrary data. More... | |
void | shareFiles (const Array< URL > &files, std::function< void(bool, const String &)> callback) |
Shares the given files. More... | |
void | shareImages (const Array< Image > &images, std::function< void(bool, const String &)> callback, ImageFileFormat *imageFileFormatToUse=nullptr) |
A convenience function to share an image. More... | |
void | shareText (const String &text, std::function< void(bool, const String &)> callback) |
Shares the given text. More... | |
Static Public Member Functions | |
static void | deleteAll () |
Deletes all extant objects. More... | |
Private Member Functions | |
ContentSharer () | |
~ContentSharer () | |
void | deleteTemporaryFiles () |
void | sharingFinished (bool, const String &) |
Private Attributes | |
std::function< void(bool, String)> | callback |
Array< File > | temporaryFiles |
A singleton class responsible for sharing content between apps and devices.
You can share text, images, files or an arbitrary data block.
@tags{GUI}
|
private |
|
private |
|
staticinherited |
Deletes all extant objects.
This shouldn't be used by applications, as it's called automatically in the shutdown code of the JUCEApplicationBase class.
|
private |
void juce::ContentSharer::shareData | ( | const MemoryBlock & | mb, |
std::function< void(bool, const String &)> | callback | ||
) |
A convenience function to share arbitrary data.
The data will be written to a temporary file and then that file will be shared. If you have your data stored on disk already, call shareFiles() instead.
Upon completion you will receive a callback with a sharing result. Note: Sadly on Android the returned success flag may be wrong as there is no standard way the sharing targets report if the sharing operation succeeded. Also, the optional error message is always empty on Android.
void juce::ContentSharer::shareFiles | ( | const Array< URL > & | files, |
std::function< void(bool, const String &)> | callback | ||
) |
Shares the given files.
Each URL should be either a full file path or it should point to a resource within the application bundle. For resources on iOS it should be something like "content/image.png" if you want to specify a file from application bundle located in "content" directory. On Android you should specify only a filename, without an extension.
Upon completion you will receive a callback with a sharing result. Note: Sadly on Android the returned success flag may be wrong as there is no standard way the sharing targets report if the sharing operation succeeded. Also, the optional error message is always empty on Android.
void juce::ContentSharer::shareImages | ( | const Array< Image > & | images, |
std::function< void(bool, const String &)> | callback, | ||
ImageFileFormat * | imageFileFormatToUse = nullptr |
||
) |
A convenience function to share an image.
This is useful when you have images loaded in memory. The images will be written to temporary files first, so if you have the images in question stored on disk already call shareFiles() instead. By default, images will be saved to PNG files, but you can supply a custom ImageFileFormat to override this. The custom file format will be owned and deleted by the sharer. e.g.
Upon completion you will receive a callback with a sharing result. Note: Sadly on Android the returned success flag may be wrong as there is no standard way the sharing targets report if the sharing operation succeeded. Also, the optional error message is always empty on Android.
void juce::ContentSharer::shareText | ( | const String & | text, |
std::function< void(bool, const String &)> | callback | ||
) |
Shares the given text.
Upon completion you will receive a callback with a sharing result. Note: Sadly on Android the returned success flag may be wrong as there is no standard way the sharing targets report if the sharing operation succeeded. Also, the optional error message is always empty on Android.