1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

iPhone on-screen keyboard support, when a TextEditor or CodeEditor is focused.

This commit is contained in:
Julian Storer 2010-03-22 17:25:45 +00:00
parent 7bc8db2ff4
commit 49320b25d2
20 changed files with 375 additions and 114 deletions

View file

@ -59,13 +59,13 @@ public:
static const var null;
var (const var& valueToCopy);
var (const int value) throw();
var (const bool value) throw();
var (const double value) throw();
var (const char* const value);
var (const juce_wchar* const value);
var (int value) throw();
var (bool value) throw();
var (double value) throw();
var (const char* value);
var (const juce_wchar* value);
var (const String& value);
var (DynamicObject* const object);
var (DynamicObject* object);
var (MethodFunction method) throw();
var& operator= (const var& valueToCopy);
@ -119,7 +119,7 @@ public:
Because this name may need to be used in contexts such as script variables or XML
tags, it must only contain ascii letters and digits, or the underscore character.
*/
identifier (const char* const name);
identifier (const char* name);
/** Creates an identifier with a specified name.
Because this name may need to be used in contexts such as script variables or XML