mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Added selection to treeview persistent state. Minor optimisations to AudioThumbnail. Added FTP password support for win32 networking. Cleaned up some file dependencies and altered some return value types to allow better c++0x forwarding behaviour.
This commit is contained in:
parent
b3634661e6
commit
67e22bbb56
241 changed files with 8010 additions and 7848 deletions
|
|
@ -80,7 +80,7 @@ bool File::isHidden() const
|
|||
//==============================================================================
|
||||
namespace
|
||||
{
|
||||
const File juce_readlink (const String& file, const File& defaultFile)
|
||||
File juce_readlink (const String& file, const File& defaultFile)
|
||||
{
|
||||
const int size = 8192;
|
||||
HeapBlock<char> buffer;
|
||||
|
|
@ -95,13 +95,13 @@ namespace
|
|||
}
|
||||
}
|
||||
|
||||
const File File::getLinkedTarget() const
|
||||
File File::getLinkedTarget() const
|
||||
{
|
||||
return juce_readlink (getFullPathName().toUTF8(), *this);
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
const File File::getSpecialLocation (const SpecialLocationType type)
|
||||
File File::getSpecialLocation (const SpecialLocationType type)
|
||||
{
|
||||
switch (type)
|
||||
{
|
||||
|
|
@ -138,7 +138,7 @@ const File File::getSpecialLocation (const SpecialLocationType type)
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
const String File::getVersion() const
|
||||
String File::getVersion() const
|
||||
{
|
||||
return String::empty;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
|
||||
//==============================================================================
|
||||
const StringArray Font::findAllTypefaceNames()
|
||||
StringArray Font::findAllTypefaceNames()
|
||||
{
|
||||
StringArray results;
|
||||
|
||||
|
|
|
|||
|
|
@ -403,7 +403,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
const Font getFont()
|
||||
Font getFont()
|
||||
{
|
||||
return currentState->font;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ void SystemClipboard::copyTextToClipboard (const String& text)
|
|||
android.activity.callVoidMethod (android.setClipboardContent, t.get());
|
||||
}
|
||||
|
||||
const String SystemClipboard::getTextFromClipboard()
|
||||
String SystemClipboard::getTextFromClipboard()
|
||||
{
|
||||
const LocalRef<jstring> text ((jstring) android.activity.callObjectMethod (android.getClipboardContent));
|
||||
return juceString (text);
|
||||
|
|
|
|||
|
|
@ -667,7 +667,7 @@ JUCE_JNI_CALLBACK (JuceAppActivity, setScreenSize, void, (JNIEnv* env, jobject a
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
const Image juce_createIconForFile (const File& file)
|
||||
Image juce_createIconForFile (const File& file)
|
||||
{
|
||||
return Image::null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue