mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
Remove AppleEvents API
This commit is contained in:
@@ -6,7 +6,6 @@
|
|||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
|
|
||||||
#include "PLAppleEvents.h"
|
|
||||||
#include "AppEventHandler.h"
|
#include "AppEventHandler.h"
|
||||||
#include "DialogManager.h"
|
#include "DialogManager.h"
|
||||||
#include "Externs.h"
|
#include "Externs.h"
|
||||||
@@ -15,6 +14,9 @@
|
|||||||
|
|
||||||
#define kNoPrintingAlert 1031
|
#define kNoPrintingAlert 1031
|
||||||
|
|
||||||
|
extern Boolean quitting;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
|
||||||
PLError_t DoOpenAppAE (const AppleEvent *, AppleEvent *, UInt32);
|
PLError_t DoOpenAppAE (const AppleEvent *, AppleEvent *, UInt32);
|
||||||
PLError_t DoOpenDocAE (const AppleEvent *, AppleEvent *, UInt32);
|
PLError_t DoOpenDocAE (const AppleEvent *, AppleEvent *, UInt32);
|
||||||
@@ -28,7 +30,6 @@ AEEventHandlerUPP openAppAEUPP, openDocAEUPP, printDocAEUPP, quitAEUPP;
|
|||||||
extern VFileSpec *theHousesSpecs;
|
extern VFileSpec *theHousesSpecs;
|
||||||
extern long incrementModeTime;
|
extern long incrementModeTime;
|
||||||
extern short thisHouseIndex, splashOriginH, splashOriginV;
|
extern short thisHouseIndex, splashOriginH, splashOriginV;
|
||||||
extern Boolean quitting;
|
|
||||||
|
|
||||||
|
|
||||||
//============================================================== Functions
|
//============================================================== Functions
|
||||||
@@ -168,6 +169,7 @@ PLError_t MyGotRequiredParams (const AppleEvent *theAE)
|
|||||||
&returnedType, 0L, 0, &actualSize) == errAEDescNotFound) ? PLErrors::kNone :
|
&returnedType, 0L, 0, &actualSize) == errAEDescNotFound) ? PLErrors::kNone :
|
||||||
PLErrors::kInvalidParameter;
|
PLErrors::kInvalidParameter;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
class SystemEventHandlerImpl : public PortabilityLayer::IAppEventHandler
|
class SystemEventHandlerImpl : public PortabilityLayer::IAppEventHandler
|
||||||
{
|
{
|
||||||
@@ -201,34 +203,5 @@ void SetUpAppleEvents (void)
|
|||||||
PLError_t theErr;
|
PLError_t theErr;
|
||||||
|
|
||||||
PortabilityLayer::AppEventHandler::SetInstance(SystemEventHandlerImpl::GetInstance());
|
PortabilityLayer::AppEventHandler::SetInstance(SystemEventHandlerImpl::GetInstance());
|
||||||
|
|
||||||
openAppAEUPP = NewAEEventHandlerProc(DoOpenAppAE);
|
|
||||||
openDocAEUPP = NewAEEventHandlerProc(DoOpenDocAE);
|
|
||||||
printDocAEUPP = NewAEEventHandlerProc(DoPrintDocAE);
|
|
||||||
quitAEUPP = NewAEEventHandlerProc(DoQuitAE);
|
|
||||||
|
|
||||||
theErr = AEInstallEventHandler(kCoreEventClass, // install oapp
|
|
||||||
kAEOpenApplication, openAppAEUPP, 0, false);
|
|
||||||
if (theErr != PLErrors::kNone)
|
|
||||||
YellowAlert(kYellowAppleEventErr, theErr);
|
|
||||||
|
|
||||||
theErr = AEInstallEventHandler(kCoreEventClass, // install odoc
|
|
||||||
kAEOpenDocuments, openDocAEUPP, 0, false);
|
|
||||||
if (theErr != PLErrors::kNone)
|
|
||||||
YellowAlert(kYellowAppleEventErr, theErr);
|
|
||||||
|
|
||||||
theErr = AEInstallEventHandler(kCoreEventClass, // install pdoc
|
|
||||||
kAEPrintDocuments, printDocAEUPP, 0, false);
|
|
||||||
if (theErr != PLErrors::kNone)
|
|
||||||
YellowAlert(kYellowAppleEventErr, theErr);
|
|
||||||
|
|
||||||
theErr = AEInstallEventHandler(kCoreEventClass, // install quit
|
|
||||||
kAEQuitApplication, quitAEUPP, 0, false);
|
|
||||||
if (theErr != PLErrors::kNone)
|
|
||||||
YellowAlert(kYellowAppleEventErr, theErr);
|
|
||||||
|
|
||||||
theErr = AESetInteractionAllowed(kAEInteractWithAll);
|
|
||||||
if (theErr != PLErrors::kNone)
|
|
||||||
YellowAlert(kYellowAppleEventErr, theErr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -6,7 +6,6 @@
|
|||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
|
|
||||||
#include "PLAppleEvents.h"
|
|
||||||
#include "PLKeyEncoding.h"
|
#include "PLKeyEncoding.h"
|
||||||
#include "PLTimeTaggedVOSEvent.h"
|
#include "PLTimeTaggedVOSEvent.h"
|
||||||
#include "PLToolUtils.h"
|
#include "PLToolUtils.h"
|
||||||
|
@@ -4,9 +4,7 @@
|
|||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
#include "PLAppleEvents.h"
|
|
||||||
#include "PLKeyEncoding.h"
|
#include "PLKeyEncoding.h"
|
||||||
#include "PLNavigation.h"
|
|
||||||
#include "PLNumberFormatting.h"
|
#include "PLNumberFormatting.h"
|
||||||
#include "PLPasStr.h"
|
#include "PLPasStr.h"
|
||||||
#include "PLResources.h"
|
#include "PLResources.h"
|
||||||
@@ -56,8 +54,6 @@ extern Boolean twoPlayerGame, wardBitSet, phoneBitSet;
|
|||||||
#ifndef COMPILEDEMO
|
#ifndef COMPILEDEMO
|
||||||
Boolean CreateNewHouse (void)
|
Boolean CreateNewHouse (void)
|
||||||
{
|
{
|
||||||
AEKeyword theKeyword;
|
|
||||||
DescType actualType;
|
|
||||||
size_t actualSize;
|
size_t actualSize;
|
||||||
VFileSpec tempSpec;
|
VFileSpec tempSpec;
|
||||||
VFileSpec theSpec;
|
VFileSpec theSpec;
|
||||||
|
@@ -1,20 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#ifndef __PL_AE_HANDLER_DESC_H__
|
|
||||||
#define __PL_AE_HANDLER_DESC_H__
|
|
||||||
|
|
||||||
#include "PLAppleEventsCommonTypes.h"
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
namespace PortabilityLayer
|
|
||||||
{
|
|
||||||
struct AEHandlerDesc
|
|
||||||
{
|
|
||||||
AEEventClass m_eventClass;
|
|
||||||
AEEventID m_eventID;
|
|
||||||
AEEventHandler m_handler;
|
|
||||||
uint32_t m_ref;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
@@ -1,73 +0,0 @@
|
|||||||
#include "AEManager.h"
|
|
||||||
#include "AEHandlerDesc.h"
|
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
namespace PortabilityLayer
|
|
||||||
{
|
|
||||||
class AEManagerImpl final : public AEManager
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
AEManagerImpl();
|
|
||||||
|
|
||||||
void Init() override;
|
|
||||||
void Shutdown() override;
|
|
||||||
|
|
||||||
void InstallEventHandler(AEEventClass eventClass, AEEventID eventID, AEEventHandler handler, uint32_t ref, bool isSysHandler) override;
|
|
||||||
void SetInteractAllowed(AEInteractAllowed interactAllowed) override;
|
|
||||||
|
|
||||||
static AEManagerImpl *GetInstance();
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::vector<AEHandlerDesc> m_handlers;
|
|
||||||
AEInteractAllowed m_interactAllowed;
|
|
||||||
|
|
||||||
static AEManagerImpl ms_instance;
|
|
||||||
};
|
|
||||||
|
|
||||||
AEManagerImpl::AEManagerImpl()
|
|
||||||
: m_interactAllowed(kAEInteractUnknown)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void AEManagerImpl::Init()
|
|
||||||
{
|
|
||||||
m_interactAllowed = kAEInteractUnknown;
|
|
||||||
}
|
|
||||||
|
|
||||||
void AEManagerImpl::Shutdown()
|
|
||||||
{
|
|
||||||
m_handlers.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
void AEManagerImpl::InstallEventHandler(AEEventClass eventClass, AEEventID eventID, AEEventHandler handler, uint32_t ref, bool isSysHandler)
|
|
||||||
{
|
|
||||||
AEHandlerDesc desc;
|
|
||||||
desc.m_eventClass = eventClass;
|
|
||||||
desc.m_eventID = eventID;
|
|
||||||
desc.m_handler = handler;
|
|
||||||
desc.m_ref = ref;
|
|
||||||
|
|
||||||
m_handlers.push_back(desc);
|
|
||||||
}
|
|
||||||
|
|
||||||
void AEManagerImpl::SetInteractAllowed(AEInteractAllowed interactAllowed)
|
|
||||||
{
|
|
||||||
m_interactAllowed = interactAllowed;
|
|
||||||
}
|
|
||||||
|
|
||||||
AEManagerImpl *AEManagerImpl::GetInstance()
|
|
||||||
{
|
|
||||||
return &ms_instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
AEManagerImpl AEManagerImpl::ms_instance;
|
|
||||||
|
|
||||||
|
|
||||||
AEManager *AEManager::GetInstance()
|
|
||||||
{
|
|
||||||
return AEManagerImpl::GetInstance();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
@@ -1,24 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#ifndef __PL_AE_MANAGER_H__
|
|
||||||
#define __PL_AE_MANAGER_H__
|
|
||||||
|
|
||||||
#include "PLAppleEventsCommonTypes.h"
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
namespace PortabilityLayer
|
|
||||||
{
|
|
||||||
class AEManager
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
virtual void Init() = 0;
|
|
||||||
virtual void Shutdown() = 0;
|
|
||||||
|
|
||||||
virtual void InstallEventHandler(AEEventClass eventClass, AEEventID eventID, AEEventHandler handler, uint32_t ref, bool isSysHandler) = 0;
|
|
||||||
virtual void SetInteractAllowed(AEInteractAllowed interactAllowed) = 0;
|
|
||||||
|
|
||||||
static AEManager *GetInstance();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
@@ -1,49 +0,0 @@
|
|||||||
#include "PLAppleEvents.h"
|
|
||||||
#include "AEManager.h"
|
|
||||||
|
|
||||||
PLError_t AEGetParamDesc(const AppleEvent *evt, AEKeyword keyword, DescType desiredType, AEDescList *descList)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AEDisposeDesc(AEDescList *descList)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AECountItems(AEDescList *descList, long *count)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AEGetNthPtr(AEDescList *descList, long index, DescType desiredType, AEKeyword *keyword, DescType *type, void *data, size_t maxSize, size_t *actualSize)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AEGetAttributePtr(const AppleEvent *evt, AEKeyword keyword, DescType desiredType, DescType *type, void *data, size_t maxSize, size_t *actualSize)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AEInstallEventHandler(AEEventClass eventClass, AEEventID eventID, AEEventHandlerUPP handler, UInt32 ref, bool isSysHandler)
|
|
||||||
{
|
|
||||||
PortabilityLayer::AEManager::GetInstance()->InstallEventHandler(eventClass, eventID, handler, ref, isSysHandler);
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t AESetInteractionAllowed(AEInteractAllowed level)
|
|
||||||
{
|
|
||||||
PortabilityLayer::AEManager::GetInstance()->SetInteractAllowed(level);
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
AEEventHandlerUPP NewAEEventHandlerProc(AEEventHandler handler)
|
|
||||||
{
|
|
||||||
return handler;
|
|
||||||
}
|
|
@@ -1,32 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#ifndef __PL_APPLEEVENTS_H__
|
|
||||||
#define __PL_APPLEEVENTS_H__
|
|
||||||
|
|
||||||
#include "PLCore.h"
|
|
||||||
#include "PLAppleEventsCommonTypes.h"
|
|
||||||
|
|
||||||
struct AppleEvent
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AEDescList
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AEDesc
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef AEEventHandler AEEventHandlerUPP;
|
|
||||||
|
|
||||||
PLError_t AEGetParamDesc(const AppleEvent *evt, AEKeyword keyword, DescType desiredType, AEDescList *descList);
|
|
||||||
PLError_t AEDisposeDesc(AEDescList *descList);
|
|
||||||
PLError_t AECountItems(AEDescList *descList, long *count);
|
|
||||||
PLError_t AEGetNthPtr(AEDescList *descList, long index, DescType desiredType, AEKeyword *keyword, DescType *type, void *data, size_t maxSize, size_t *actualSize);
|
|
||||||
PLError_t AEGetAttributePtr(const AppleEvent *evt, AEKeyword keyword, DescType desiredType, DescType *type, void *data, size_t maxSize, size_t *actualSize);
|
|
||||||
PLError_t AEInstallEventHandler(AEEventClass eventClass, AEEventID eventID, AEEventHandlerUPP handler, UInt32 ref, bool isSysHandler);
|
|
||||||
PLError_t AESetInteractionAllowed(AEInteractAllowed level);
|
|
||||||
|
|
||||||
AEEventHandlerUPP NewAEEventHandlerProc(AEEventHandler handler);
|
|
||||||
|
|
||||||
#endif
|
|
@@ -1,52 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#ifndef __PL_APPLE_EVENTS_COMMON_TYPES_H__
|
|
||||||
#define __PL_APPLE_EVENTS_COMMON_TYPES_H__
|
|
||||||
|
|
||||||
#include "PLErrorCodes.h"
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
struct AppleEvent;
|
|
||||||
|
|
||||||
enum AEError
|
|
||||||
{
|
|
||||||
errAEEventNotHandled = 1,
|
|
||||||
errAEDescNotFound,
|
|
||||||
errAEParamMissed,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum AEKeyword
|
|
||||||
{
|
|
||||||
keyDirectObject,
|
|
||||||
keyMissedKeywordAttr,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum DescType
|
|
||||||
{
|
|
||||||
typeAEList,
|
|
||||||
typeFSS,
|
|
||||||
typeWildCard,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum AEEventID
|
|
||||||
{
|
|
||||||
kAEOpenApplication,
|
|
||||||
kAEOpenDocuments,
|
|
||||||
kAEPrintDocuments,
|
|
||||||
kAEQuitApplication
|
|
||||||
};
|
|
||||||
|
|
||||||
enum AEEventClass
|
|
||||||
{
|
|
||||||
kCoreEventClass
|
|
||||||
};
|
|
||||||
|
|
||||||
enum AEInteractAllowed
|
|
||||||
{
|
|
||||||
kAEInteractUnknown,
|
|
||||||
kAEInteractWithAll
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef PLError_t (*AEEventHandler)(const AppleEvent *theAE, AppleEvent *reply, uint32_t ref);
|
|
||||||
|
|
||||||
#endif
|
|
@@ -6,7 +6,6 @@
|
|||||||
#include "PLKeyEncoding.h"
|
#include "PLKeyEncoding.h"
|
||||||
#include "PLQDraw.h"
|
#include "PLQDraw.h"
|
||||||
|
|
||||||
#include "AEManager.h"
|
|
||||||
#include "DisplayDeviceManager.h"
|
#include "DisplayDeviceManager.h"
|
||||||
#include "FileManager.h"
|
#include "FileManager.h"
|
||||||
#include "FilePermission.h"
|
#include "FilePermission.h"
|
||||||
@@ -644,7 +643,6 @@ void PL_Init()
|
|||||||
PortabilityLayer::MemoryManager::GetInstance()->Init();
|
PortabilityLayer::MemoryManager::GetInstance()->Init();
|
||||||
PortabilityLayer::ResourceManager::GetInstance()->Init();
|
PortabilityLayer::ResourceManager::GetInstance()->Init();
|
||||||
PortabilityLayer::DisplayDeviceManager::GetInstance()->Init();
|
PortabilityLayer::DisplayDeviceManager::GetInstance()->Init();
|
||||||
PortabilityLayer::AEManager::GetInstance()->Init();
|
|
||||||
PortabilityLayer::QDManager::GetInstance()->Init();
|
PortabilityLayer::QDManager::GetInstance()->Init();
|
||||||
PortabilityLayer::MenuManager::GetInstance()->Init();
|
PortabilityLayer::MenuManager::GetInstance()->Init();
|
||||||
}
|
}
|
||||||
|
@@ -1,13 +0,0 @@
|
|||||||
#include "PLNavigation.h"
|
|
||||||
|
|
||||||
PLError_t NavGetDefaultDialogOptions(NavDialogOptions *options)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
||||||
|
|
||||||
PLError_t NavPutFile(AEDesc *defaultLocation, NavReplyRecord *reply, NavDialogOptions *dlgOptions, void *unknown, UInt32 fileType, UInt32 fileCreator, void *unknown2)
|
|
||||||
{
|
|
||||||
PL_NotYetImplemented();
|
|
||||||
return PLErrors::kNone;
|
|
||||||
}
|
|
@@ -1,26 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
#ifndef __PL_NAVIGATION_H__
|
|
||||||
#define __PL_NAVIGATION_H__
|
|
||||||
|
|
||||||
#include "PLCore.h"
|
|
||||||
#include "PLAppleEvents.h"
|
|
||||||
|
|
||||||
struct AEDesc;
|
|
||||||
|
|
||||||
struct NavReplyRecord
|
|
||||||
{
|
|
||||||
bool validRecord;
|
|
||||||
bool replacing;
|
|
||||||
int vRefNum;
|
|
||||||
long parID; // Directory?
|
|
||||||
AEDescList selection;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct NavDialogOptions
|
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
PLError_t NavGetDefaultDialogOptions(NavDialogOptions *options);
|
|
||||||
PLError_t NavPutFile(AEDesc *defaultLocation, NavReplyRecord *reply, NavDialogOptions *dlgOptions, void *unknown, UInt32 fileType, UInt32 fileCreator, void *unknown2);
|
|
||||||
|
|
||||||
#endif
|
|
@@ -143,8 +143,6 @@
|
|||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="..\GpCommon\GpBitfield.h" />
|
<ClInclude Include="..\GpCommon\GpBitfield.h" />
|
||||||
<ClInclude Include="AEHandlerDesc.h" />
|
|
||||||
<ClInclude Include="AEManager.h" />
|
|
||||||
<ClInclude Include="AntiAliasTable.h" />
|
<ClInclude Include="AntiAliasTable.h" />
|
||||||
<ClInclude Include="AppEventHandler.h" />
|
<ClInclude Include="AppEventHandler.h" />
|
||||||
<ClInclude Include="ArrayTools.h" />
|
<ClInclude Include="ArrayTools.h" />
|
||||||
@@ -204,8 +202,6 @@
|
|||||||
<ClInclude Include="PascalStrLiteral.h" />
|
<ClInclude Include="PascalStrLiteral.h" />
|
||||||
<ClInclude Include="HostMemoryBuffer.h" />
|
<ClInclude Include="HostMemoryBuffer.h" />
|
||||||
<ClInclude Include="HostFileSystem.h" />
|
<ClInclude Include="HostFileSystem.h" />
|
||||||
<ClInclude Include="PLAppleEvents.h" />
|
|
||||||
<ClInclude Include="PLAppleEventsCommonTypes.h" />
|
|
||||||
<ClInclude Include="PLApplication.h" />
|
<ClInclude Include="PLApplication.h" />
|
||||||
<ClInclude Include="PLArrayView.h" />
|
<ClInclude Include="PLArrayView.h" />
|
||||||
<ClInclude Include="PLArrayViewIterator.h" />
|
<ClInclude Include="PLArrayViewIterator.h" />
|
||||||
@@ -265,7 +261,6 @@
|
|||||||
<ClInclude Include="ResourceCompiledTypeList.h" />
|
<ClInclude Include="ResourceCompiledTypeList.h" />
|
||||||
<ClInclude Include="ResourceFile.h" />
|
<ClInclude Include="ResourceFile.h" />
|
||||||
<ClInclude Include="PLMenus.h" />
|
<ClInclude Include="PLMenus.h" />
|
||||||
<ClInclude Include="PLNavigation.h" />
|
|
||||||
<ClInclude Include="PLNumberFormatting.h" />
|
<ClInclude Include="PLNumberFormatting.h" />
|
||||||
<ClInclude Include="PLPalettes.h" />
|
<ClInclude Include="PLPalettes.h" />
|
||||||
<ClInclude Include="PLPasStr.h" />
|
<ClInclude Include="PLPasStr.h" />
|
||||||
@@ -302,7 +297,6 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\stb\stb_image_write.c" />
|
<ClCompile Include="..\stb\stb_image_write.c" />
|
||||||
<ClCompile Include="AEManager.cpp" />
|
|
||||||
<ClCompile Include="AntiAliasTable.cpp" />
|
<ClCompile Include="AntiAliasTable.cpp" />
|
||||||
<ClCompile Include="AppEventHandler.cpp" />
|
<ClCompile Include="AppEventHandler.cpp" />
|
||||||
<ClCompile Include="BinHex4.cpp" />
|
<ClCompile Include="BinHex4.cpp" />
|
||||||
@@ -337,7 +331,6 @@
|
|||||||
<ClCompile Include="MenuManager.cpp" />
|
<ClCompile Include="MenuManager.cpp" />
|
||||||
<ClCompile Include="MMBlock.cpp" />
|
<ClCompile Include="MMBlock.cpp" />
|
||||||
<ClCompile Include="MMHandleBlock.cpp" />
|
<ClCompile Include="MMHandleBlock.cpp" />
|
||||||
<ClCompile Include="PLAppleEvents.cpp" />
|
|
||||||
<ClCompile Include="PLApplication.cpp" />
|
<ClCompile Include="PLApplication.cpp" />
|
||||||
<ClCompile Include="PLButtonWidget.cpp" />
|
<ClCompile Include="PLButtonWidget.cpp" />
|
||||||
<ClCompile Include="PLControlDefinitions.cpp" />
|
<ClCompile Include="PLControlDefinitions.cpp" />
|
||||||
@@ -354,7 +347,6 @@
|
|||||||
<ClCompile Include="PLLabelWidget.cpp" />
|
<ClCompile Include="PLLabelWidget.cpp" />
|
||||||
<ClCompile Include="PLMenus.cpp" />
|
<ClCompile Include="PLMenus.cpp" />
|
||||||
<ClCompile Include="PLMovies.cpp" />
|
<ClCompile Include="PLMovies.cpp" />
|
||||||
<ClCompile Include="PLNavigation.cpp" />
|
|
||||||
<ClCompile Include="PLNumberFormatting.cpp" />
|
<ClCompile Include="PLNumberFormatting.cpp" />
|
||||||
<ClCompile Include="PLPopupMenuWidget.cpp" />
|
<ClCompile Include="PLPopupMenuWidget.cpp" />
|
||||||
<ClCompile Include="PLQDOffscreen.cpp" />
|
<ClCompile Include="PLQDOffscreen.cpp" />
|
||||||
|
@@ -93,9 +93,6 @@
|
|||||||
<ClInclude Include="PLResources.h">
|
<ClInclude Include="PLResources.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="PLAppleEvents.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="PLToolUtils.h">
|
<ClInclude Include="PLToolUtils.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@@ -105,9 +102,6 @@
|
|||||||
<ClInclude Include="PLSound.h">
|
<ClInclude Include="PLSound.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="PLNavigation.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="PLNumberFormatting.h">
|
<ClInclude Include="PLNumberFormatting.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@@ -165,15 +159,6 @@
|
|||||||
<ClInclude Include="HostDisplayDriver.h">
|
<ClInclude Include="HostDisplayDriver.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="PLAppleEventsCommonTypes.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="AEManager.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="AEHandlerDesc.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="ByteSwap.h">
|
<ClInclude Include="ByteSwap.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
@@ -521,9 +506,6 @@
|
|||||||
<ClCompile Include="PLQDOffscreen.cpp">
|
<ClCompile Include="PLQDOffscreen.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="PLAppleEvents.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="PLStringCompare.cpp">
|
<ClCompile Include="PLStringCompare.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@@ -533,9 +515,6 @@
|
|||||||
<ClCompile Include="PLDialogs.cpp">
|
<ClCompile Include="PLDialogs.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="PLNavigation.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="PLNumberFormatting.cpp">
|
<ClCompile Include="PLNumberFormatting.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@@ -569,9 +548,6 @@
|
|||||||
<ClCompile Include="HostDisplayDriver.cpp">
|
<ClCompile Include="HostDisplayDriver.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="AEManager.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="ByteSwap.cpp">
|
<ClCompile Include="ByteSwap.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
Reference in New Issue
Block a user