mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-08 04:20:09 +00:00
Refactoring of Drawables with new class MarkerList. Fixes for Mac 10.5 SDK includes and minor change to win32 repainting.
This commit is contained in:
parent
9973f5a81e
commit
faecab9ca5
26 changed files with 1267 additions and 689 deletions
|
|
@ -65,8 +65,8 @@
|
|||
#import <IOKit/hid/IOHIDKeys.h>
|
||||
#import <IOKit/pwr_mgt/IOPMLib.h>
|
||||
#endif
|
||||
#if JUCE_BUILD_MISC && (JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_AU) \
|
||||
&& ! (defined (MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)
|
||||
#if (JUCE_BUILD_MISC && (JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_AU)) \
|
||||
|| ! (defined (MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)
|
||||
#include <Carbon/Carbon.h>
|
||||
#endif
|
||||
#include <sys/dir.h>
|
||||
|
|
|
|||
|
|
@ -2003,11 +2003,10 @@ private:
|
|||
return 0;
|
||||
|
||||
case WM_NCPAINT:
|
||||
if (wParam != 1)
|
||||
handlePaintMessage();
|
||||
|
||||
if (hasTitleBar())
|
||||
break;
|
||||
else if (wParam != 1)
|
||||
handlePaintMessage();
|
||||
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue