mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Updated ComponentDragger to handle transformed components (this required a change to its parameters). Tidied up some classes with the JUCE_DECLARE_NON_COPYABLE macro. Changed some 3rd-party include statements to use angle-bracket quotes.
This commit is contained in:
parent
a5cf4030f5
commit
952b8c3940
116 changed files with 654 additions and 1127 deletions
|
|
@ -46,10 +46,6 @@ public:
|
|||
setAlwaysOnTop (true);
|
||||
}
|
||||
|
||||
~DragOverlayComp()
|
||||
{
|
||||
}
|
||||
|
||||
void paint (Graphics& g)
|
||||
{
|
||||
g.drawImageAt (image, 0, 0);
|
||||
|
|
@ -58,8 +54,7 @@ public:
|
|||
private:
|
||||
Image image;
|
||||
|
||||
DragOverlayComp (const DragOverlayComp&);
|
||||
DragOverlayComp& operator= (const DragOverlayComp&);
|
||||
JUCE_DECLARE_NON_COPYABLE (DragOverlayComp);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue