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

Added 'new folder' button to save dialogs. Fixes for mouse position/popup menus, ComponentDragger, ComboBox.

This commit is contained in:
Julian Storer 2010-12-11 19:56:47 +00:00
parent 709f573997
commit 76b128d90e
26 changed files with 488 additions and 470 deletions

View file

@ -182,10 +182,6 @@ public:
private:
struct SyntaxToken
{
String text;
int tokenType;
float width;
SyntaxToken (const String& text_, const int type) throw()
: text (text_), tokenType (type), width (-1.0f)
{
@ -195,6 +191,10 @@ private:
{
return text != other.text || tokenType != other.tokenType;
}
String text;
int tokenType;
float width;
};
Array <SyntaxToken> tokens;