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:
parent
709f573997
commit
76b128d90e
26 changed files with 488 additions and 470 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue