JUCE  v6.1.6 (6.0.8-1114)
JUCE API
Looking for a senior C++ dev?
I'm looking for work. Hire me!
juce::ContentSharer Class Reference

A singleton class responsible for sharing content between apps and devices. More...

#include <juce_ContentSharer.h>

Inheritance diagram for juce::ContentSharer:
Collaboration diagram for juce::ContentSharer:

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< FiletemporaryFiles
 

Detailed Description

A singleton class responsible for sharing content between apps and devices.

You can share text, images, files or an arbitrary data block.

@tags{GUI}

Constructor & Destructor Documentation

◆ ContentSharer()

juce::ContentSharer::ContentSharer ( )
private

◆ ~ContentSharer()

juce::ContentSharer::~ContentSharer ( )
private

Member Function Documentation

◆ deleteAll()

static void juce::DeletedAtShutdown::deleteAll ( )
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.

◆ deleteTemporaryFiles()

void juce::ContentSharer::deleteTemporaryFiles ( )
private

◆ shareData()

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.

◆ shareFiles()

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.

◆ shareImages()

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.

Graphics g (myImage);
g.setColour (Colours::green);
g.fillEllipse (20, 20, 300, 200);
Array<Image> images;
images.add (myImage);
ContentSharer::getInstance()->shareImages (images, myCallback);

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.

◆ shareText()

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.

◆ sharingFinished()

void juce::ContentSharer::sharingFinished ( bool  ,
const String  
)
private

Member Data Documentation

◆ callback

std::function<void (bool, String)> juce::ContentSharer::callback
private

◆ temporaryFiles

Array<File> juce::ContentSharer::temporaryFiles
private

The documentation for this class was generated from the following file:
juce::gl::g
GLboolean GLboolean g
Definition: juce_gl.h:1931
juce::Colours::green
const Colour green
Definition: juce_Colours.h:94