1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-28 02:30:05 +00:00

Re-saved all projects.

This commit is contained in:
Lukasz Kozakiewicz 2017-12-14 15:52:48 +00:00
parent 360449de0b
commit 1f77b356d1
106 changed files with 210 additions and 0 deletions

View file

@ -140,6 +140,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -303,6 +303,10 @@ public class AnalyticsCollection extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class AnalyticsCollection extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

View file

@ -2280,6 +2280,7 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_FastMathApproximations.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_LookupTable.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_SpecialFunctions.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\native\juce_avx_SIMDNativeOps.h"/>

View file

@ -3459,6 +3459,9 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>

View file

@ -2281,6 +2281,7 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_FastMathApproximations.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_LookupTable.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_SpecialFunctions.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\native\juce_avx_SIMDNativeOps.h"/>

View file

@ -3459,6 +3459,9 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -2140,6 +2140,7 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_FastMathApproximations.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_LookupTable.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_SpecialFunctions.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\native\juce_avx_SIMDNativeOps.h"/>

View file

@ -3204,6 +3204,9 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>

View file

@ -303,6 +303,10 @@ public class JuceDemo extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class JuceDemo extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 B

After

Width:  |  Height:  |  Size: 912 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Before After
Before After

View file

@ -303,6 +303,10 @@ public class InAppPurchase extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class InAppPurchase extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 76 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 792 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 9.8 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Before After
Before After

View file

@ -1235,6 +1235,10 @@ public class MidiTest extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -1835,6 +1839,17 @@ public class MidiTest extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

View file

@ -303,6 +303,10 @@ public class JUCENetworkGraphicsDemo extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class JUCENetworkGraphicsDemo extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 979 B

After

Width:  |  Height:  |  Size: 912 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Before After
Before After

View file

@ -303,6 +303,10 @@ public class OSCReceiver extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class OSCReceiver extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

View file

@ -303,6 +303,10 @@ public class OSCSender extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class OSCSender extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -140,6 +140,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -142,6 +142,10 @@
//#define JUCE_USE_STUDIO_ONE_COMPATIBLE_PARAMETERS 1
#endif
#ifndef JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE
//#define JUCE_STANDALONE_FILTER_WINDOW_USE_KIOSK_MODE 1
#endif
//==============================================================================
// juce_audio_processors flags:

View file

@ -1235,6 +1235,10 @@ public class PushNotificationsDemo extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -1835,6 +1839,17 @@ public class PushNotificationsDemo extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================

View file

@ -2127,6 +2127,7 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_FastMathApproximations.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_LookupTable.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_SpecialFunctions.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\native\juce_avx_SIMDNativeOps.h"/>

View file

@ -3159,6 +3159,9 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h">
<Filter>JUCE Modules\juce_dsp\maths</Filter>
</ClInclude>

View file

@ -2127,6 +2127,7 @@
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_FastMathApproximations.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_LookupTable.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Matrix.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Phase.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_Polynomial.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\maths\juce_SpecialFunctions.h"/>
<ClInclude Include="..\..\..\..\modules\juce_dsp\native\juce_avx_SIMDNativeOps.h"/>

Some files were not shown because too many files have changed in this diff Show more