├── .gitignore ├── License ├── Meta ├── Demo.gif └── Installer.pmdoc │ ├── 01multiplex-contents.xml │ ├── 01multiplex.xml │ └── index.xml ├── Multiplex.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── kolin.xcuserdatad │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── Multiplex.xcscheme └── xcuserdata │ ├── kkrewink.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── kolin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Multiplex.xcworkspace └── contents.xcworkspacedata ├── Multiplex ├── Categories │ ├── DVTSourceTextView+MPXArrowKeyMovement.h │ ├── DVTSourceTextView+MPXArrowKeyMovement.m │ ├── DVTSourceTextView+MPXAutocompletion.h │ ├── DVTSourceTextView+MPXAutocompletion.m │ ├── DVTSourceTextView+MPXClipboard.h │ ├── DVTSourceTextView+MPXClipboard.m │ ├── DVTSourceTextView+MPXDocumentMovement.h │ ├── DVTSourceTextView+MPXDocumentMovement.m │ ├── DVTSourceTextView+MPXEditorExtensions.h │ ├── DVTSourceTextView+MPXEditorExtensions.m │ ├── DVTSourceTextView+MPXIndentation.h │ ├── DVTSourceTextView+MPXIndentation.m │ ├── DVTSourceTextView+MPXLineMovement.h │ ├── DVTSourceTextView+MPXLineMovement.m │ ├── DVTSourceTextView+MPXMouseEvents.h │ ├── DVTSourceTextView+MPXMouseEvents.m │ ├── DVTSourceTextView+MPXParagraphMovement.h │ ├── DVTSourceTextView+MPXParagraphMovement.m │ ├── DVTSourceTextView+MPXQuickAddNext.h │ ├── DVTSourceTextView+MPXQuickAddNext.m │ ├── DVTSourceTextView+MPXSelectionVisualization.h │ ├── DVTSourceTextView+MPXSelectionVisualization.m │ ├── DVTSourceTextView+MPXSwizzling.h │ ├── DVTSourceTextView+MPXSwizzling.m │ ├── DVTSourceTextView+MPXTabMovement.h │ ├── DVTSourceTextView+MPXTabMovement.m │ ├── DVTSourceTextView+MPXTokenizedEditing.h │ ├── DVTSourceTextView+MPXTokenizedEditing.m │ ├── DVTSourceTextView+MPXWhitespaceTrimming.h │ ├── DVTSourceTextView+MPXWhitespaceTrimming.m │ ├── DVTSourceTextView+MPXWordMovement.h │ ├── DVTSourceTextView+MPXWordMovement.m │ ├── DVTTextCompletionListWindowController+MPXAutocompleteAnimation.h │ ├── DVTTextCompletionListWindowController+MPXAutocompleteAnimation.m │ ├── IDEEditorCoordinator+MPXJumpWorkaround.h │ └── IDEEditorCoordinator+MPXJumpWorkaround.m ├── Classes │ ├── MPXSelection.h │ ├── MPXSelection.m │ ├── MPXSelectionCore-Prefix.pch │ ├── MPXSelectionCore.h │ ├── MPXSelectionManager.h │ ├── MPXSelectionManager.m │ ├── MPXSelectionMutation.h │ ├── MPXSelectionMutation.m │ ├── MPXTextViewSelectionDecorator.h │ └── MPXTextViewSelectionDecorator.m ├── IDEHeaders │ ├── IDEHeaders.xcodeproj │ │ └── project.pbxproj │ └── IDEHeaders │ │ ├── DVTFoundation │ │ ├── CDStructures.h │ │ ├── DTDKAddAppIDService.h │ │ ├── DTDKAddApplicationGroupToTeamService.h │ │ ├── DTDKAddApplicationGroupsToAppIDService.h │ │ ├── DTDKAddCloudContainerToTeamService.h │ │ ├── DTDKAddCloudContainersToAppIDService.h │ │ ├── DTDKAddDeviceService.h │ │ ├── DTDKAddOMCIdentifierToTeamService.h │ │ ├── DTDKAddOMCIdentifiersToAppIDService.h │ │ ├── DTDKAddShoeboxIDService.h │ │ ├── DTDKCertificateAuthorityService.h │ │ ├── DTDKCertificateService.h │ │ ├── DTDKCreateProvisioningProfileService.h │ │ ├── DTDKDeleteAppIDService.h │ │ ├── DTDKDeleteProvisioningProfileService.h │ │ ├── DTDKDeleteShoeboxIDService.h │ │ ├── DTDKDeveloperInfoService.h │ │ ├── DTDKDeveloperPortalService.h │ │ ├── DTDKDownloadCertService.h │ │ ├── DTDKDownloadProvisioningProfileService.h │ │ ├── DTDKFetchAppIDService.h │ │ ├── DTDKListAppIDsService.h │ │ ├── DTDKListApplicationGroupsForTeamService.h │ │ ├── DTDKListCSRsService.h │ │ ├── DTDKListCertService.h │ │ ├── DTDKListCloudContainersForAppIDService.h │ │ ├── DTDKListCloudContainersForTeamService.h │ │ ├── DTDKListDeviceService.h │ │ ├── DTDKListEverythingService.h │ │ ├── DTDKListOMCIdentifiersForTeamService.h │ │ ├── DTDKListProvisioningProfileService.h │ │ ├── DTDKListShoeboxIDsService.h │ │ ├── DTDKListTeamForServerService.h │ │ ├── DTDKListTeamService.h │ │ ├── DTDKRemoveDeviceService.h │ │ ├── DTDKRenameDeviceService.h │ │ ├── DTDKRevokeCertService.h │ │ ├── DTDKServerCancelJoinTeamService.h │ │ ├── DTDKServerDownloadTeamClientCertificateService.h │ │ ├── DTDKServerDownloadTeamDevelopmentCertificateService.h │ │ ├── DTDKServerJoinTeamService.h │ │ ├── DTDKServerRenewTeamMembershipTeamService.h │ │ ├── DTDKServerRequestTeamDevelopmentCertificateService.h │ │ ├── DTDKServerRevokeTeamMembershipTeamService.h │ │ ├── DTDKSubmitCSRService.h │ │ ├── DTDKTeamBasedService.h │ │ ├── DTDKUpdateAppIDService.h │ │ ├── DTXAllowedRPC-Protocol.h │ │ ├── DVTAbstractMacDevice.h │ │ ├── DVTActivationRule.h │ │ ├── DVTAddAppIDOperation.h │ │ ├── DVTAddApplicationGroupToTeamOperation.h │ │ ├── DVTAddApplicationGroupsToAppIDOperation.h │ │ ├── DVTAddCloudContainerToTeamOperation.h │ │ ├── DVTAddCloudContainersToAppIDOperation.h │ │ ├── DVTAddDeviceOperation.h │ │ ├── DVTAddOMCIdentifierToTeamOperation.h │ │ ├── DVTAddOMCIdentifiersToAppIDOperation.h │ │ ├── DVTAppBundleUtilities.h │ │ ├── DVTAppExtensionInstallPromiseManager.h │ │ ├── DVTAppIDFeatures.h │ │ ├── DVTAppIDRecord.h │ │ ├── DVTAppleIDBasedDeveloperAccount.h │ │ ├── DVTApplicationGroupRecord.h │ │ ├── DVTArchitecture.h │ │ ├── DVTArrayObservingBlockToken.h │ │ ├── DVTAssertingWeakInterposer_ProxyHelperReference.h │ │ ├── DVTAssertingWeakInterposer_RuntimeWeakReference.h │ │ ├── DVTAssertionHandler.h │ │ ├── DVTAssertionHandling-Protocol.h │ │ ├── DVTAutosynchingProxyArray.h │ │ ├── DVTBasicDevice-Protocol.h │ │ ├── DVTBlockBasedCancellationToken.h │ │ ├── DVTBlockScanner.h │ │ ├── DVTBloomFilter.h │ │ ├── DVTBuildVersion.h │ │ ├── DVTByteBuffer.h │ │ ├── DVTCPlusPlusSourceModelParser.h │ │ ├── DVTCSourceModelParser.h │ │ ├── DVTCancellable-Protocol.h │ │ ├── DVTCancellationBlockCompletion-Protocol.h │ │ ├── DVTCertBasedDeveloperAccount.h │ │ ├── DVTCertificateRecord.h │ │ ├── DVTCertificateRecordVendor-Protocol.h │ │ ├── DVTCertificateUtilities.h │ │ ├── DVTCharStream.h │ │ ├── DVTCheapReusableSubstring.h │ │ ├── DVTCloudContainerRecord.h │ │ ├── DVTCodesignParameterSnapshot.h │ │ ├── DVTCodesignResolutionInputs.h │ │ ├── DVTCodesignResolver.h │ │ ├── DVTCodesignableDevice-Protocol.h │ │ ├── DVTCodesignableDeviceSnapshot.h │ │ ├── DVTCollectCertificateFailuresOperation.h │ │ ├── DVTCommandLineOptionDefinition.h │ │ ├── DVTCommandLineParser.h │ │ ├── DVTCommandLineTool.h │ │ ├── DVTComparisonDocumentLocation.h │ │ ├── DVTCompressionInfoProvider.h │ │ ├── DVTConfinementService.h │ │ ├── DVTConfinementServiceConnection.h │ │ ├── DVTConsoleLogger.h │ │ ├── DVTConsoleOutputFileHandle.h │ │ ├── DVTCopyOnWriteMutableArray.h │ │ ├── DVTCoverageDataContainer.h │ │ ├── DVTCreateProfileOperation.h │ │ ├── DVTCustomDataOwnership.h │ │ ├── DVTCustomDataSpecifier.h │ │ ├── DVTCustomDataStoring-Protocol.h │ │ ├── DVTDTApplicationWorkspaceClient-Protocol.h │ │ ├── DVTDeclaredPrimitiveFileDataType.h │ │ ├── DVTDelayedInvocation.h │ │ ├── DVTDelayedInvocationCompoundScheduler.h │ │ ├── DVTDelayedInvocationDelayScheduler.h │ │ ├── DVTDelayedInvocationNew.h │ │ ├── DVTDelayedInvocationNotificationHandler.h │ │ ├── DVTDelayedInvocationNotificationScheduler.h │ │ ├── DVTDelayedInvocationPriorityScheduler.h │ │ ├── DVTDelayedInvocationScheduler.h │ │ ├── DVTDeleteProfileOperation.h │ │ ├── DVTDeveloperAccount.h │ │ ├── DVTDeveloperAccountCredentials.h │ │ ├── DVTDeveloperAccountManager.h │ │ ├── DVTDeveloperAccountSession.h │ │ ├── DVTDeveloperInfoOperation.h │ │ ├── DVTDeveloperPaths.h │ │ ├── DVTDeveloperPortalDatabase.h │ │ ├── DVTDeveloperPortalDefaults.h │ │ ├── DVTDeveloperPortalResponseWrapper.h │ │ ├── DVTDeveloperPortalServiceConnection.h │ │ ├── DVTDeveloperProfile.h │ │ ├── DVTDeveloperProfileAccountProvider-Protocol.h │ │ ├── DVTDeveloperRecord.h │ │ ├── DVTDevice.h │ │ ├── DVTDeviceApplication-Protocol.h │ │ ├── DVTDeviceApplicationBase.h │ │ ├── DVTDeviceApplicationItem-Protocol.h │ │ ├── DVTDeviceApplicationProvider-Protocol.h │ │ ├── DVTDeviceCapability.h │ │ ├── DVTDeviceCapabilityMatchAnythingObject.h │ │ ├── DVTDeviceLocator.h │ │ ├── DVTDeviceManager.h │ │ ├── DVTDeviceRecord.h │ │ ├── DVTDeviceService.h │ │ ├── DVTDeviceSupportFiles.h │ │ ├── DVTDeviceType.h │ │ ├── DVTDiffBinaryDataSource.h │ │ ├── DVTDiffCharacterDataSource.h │ │ ├── DVTDiffContext.h │ │ ├── DVTDiffDataSource.h │ │ ├── DVTDiffDescriptor.h │ │ ├── DVTDiffHashing-Protocol.h │ │ ├── DVTDiffLineDataSource.h │ │ ├── DVTDiffWordDataSource.h │ │ ├── DVTDirectoryBasedCustomDataStore.h │ │ ├── DVTDirectoryServicesSessionDescription-Protocol.h │ │ ├── DVTDisallowFinishToken.h │ │ ├── DVTDispatchLock.h │ │ ├── DVTDispatchLock_ReadWrite.h │ │ ├── DVTDispatchLock_Recursive.h │ │ ├── DVTDocumentFragmentFilter.h │ │ ├── DVTDocumentLocation.h │ │ ├── DVTDotSeparatedVersion.h │ │ ├── DVTDownloadCertificateOperation.h │ │ ├── DVTDownloadDeveloperIDCertificateAuthorityOperation.h │ │ ├── DVTDownloadProfileOperation.h │ │ ├── DVTDownloadTeamProfileOperation.h │ │ ├── DVTDownloadWWDRCertificateAuthorityOperation.h │ │ ├── DVTDownloadable.h │ │ ├── DVTDownloadableDependency.h │ │ ├── DVTDownloadableIndex.h │ │ ├── DVTDownloadableInstallationHelper-Protocol.h │ │ ├── DVTDownloadableManager.h │ │ ├── DVTDownloadableManagerIOCache.h │ │ ├── DVTDownloadableOperation.h │ │ ├── DVTDownloadableOperationDownload.h │ │ ├── DVTDownloadableProgressToken.h │ │ ├── DVTDownloadableProvider-Protocol.h │ │ ├── DVTDownloadable_PKInstallClientDelegate.h │ │ ├── DVTDynamicLogController.h │ │ ├── DVTDynamicPrimitiveFileDataType.h │ │ ├── DVTEncodableIndex.h │ │ ├── DVTEncodableIndexEntry.h │ │ ├── DVTExtendedPlatformInfo.h │ │ ├── DVTExtension.h │ │ ├── DVTExtensionAttributeDescription.h │ │ ├── DVTExtensionElementDescription.h │ │ ├── DVTExtensionParameter.h │ │ ├── DVTExtensionPoint.h │ │ ├── DVTExtensionPropertyDescription.h │ │ ├── DVTExtraXMLArchiveData.h │ │ ├── DVTExtraXMLAttribute.h │ │ ├── DVTExtraXMLElement.h │ │ ├── DVTFetchOrCreateAppIDOperation.h │ │ ├── DVTFileDataType.h │ │ ├── DVTFileDataTypeDetection.h │ │ ├── DVTFileDataTypeDetectionMagicCache.h │ │ ├── DVTFileDataTypeDetector-Protocol.h │ │ ├── DVTFileLogger.h │ │ ├── DVTFilePath.h │ │ ├── DVTFilePathEventWatcher.h │ │ ├── DVTFileSystemRepresentationProviding-Protocol.h │ │ ├── DVTFileSystemVNode.h │ │ ├── DVTFileWrapper.h │ │ ├── DVTFindDescriptor.h │ │ ├── DVTFindRegularExpressionDescriptor.h │ │ ├── DVTFindRegularExpressionResult.h │ │ ├── DVTFindResult.h │ │ ├── DVTFindTextualDescriptor.h │ │ ├── DVTFirstLaunchPackage.h │ │ ├── DVTFirstLaunchPackageInstallationHelper.h │ │ ├── DVTFuture.h │ │ ├── DVTGeneratedContentProvider.h │ │ ├── DVTGlobalCustomDataStore.h │ │ ├── DVTHTMLEntityScanner.h │ │ ├── DVTHTMLScanner.h │ │ ├── DVTITunesConnectProxy.h │ │ ├── DVTITunesConnectProxyDelegate.h │ │ ├── DVTIndexBackedDownloadableProvider.h │ │ ├── DVTInvalidExtension.h │ │ ├── DVTInvalidation-Protocol.h │ │ ├── DVTInvalidationAssertionBehaviorOverride.h │ │ ├── DVTInvalidationMixIn.h │ │ ├── DVTInvalidationMixIn_NoMultipleInvalidateAssertion.h │ │ ├── DVTKVCMethodStyle.h │ │ ├── DVTKVOConditionValidator.h │ │ ├── DVTKeywordScanner.h │ │ ├── DVTKnownStringMapping.h │ │ ├── DVTLanguageSpecification.h │ │ ├── DVTLibraryFragmentFilter.h │ │ ├── DVTLicenseAgreementHelper.h │ │ ├── DVTListAppIDsOperation.h │ │ ├── DVTListApplicationGroupsForTeamOperation.h │ │ ├── DVTListCertsOperation.h │ │ ├── DVTListCloudContainersForAppIDOperation.h │ │ ├── DVTListCloudContainersForTeamOperation.h │ │ ├── DVTListDevicesOperation.h │ │ ├── DVTListEverythingOperation.h │ │ ├── DVTListOMCIdentifiersForTeamOperation.h │ │ ├── DVTListProvisioningProfilesOperation.h │ │ ├── DVTListShoeboxIDsOperation.h │ │ ├── DVTListTeamForServerOperation.h │ │ ├── DVTListTeamOperation.h │ │ ├── DVTLocalComputer.h │ │ ├── DVTLocalComputerLocator.h │ │ ├── DVTLocalProcessInformation.h │ │ ├── DVTLocale.h │ │ ├── DVTLocking-Protocol.h │ │ ├── DVTLogAspect.h │ │ ├── DVTLogger.h │ │ ├── DVTMTReport.h │ │ ├── DVTMacroAssignmentInfo.h │ │ ├── DVTMacroDefinitionCondition.h │ │ ├── DVTMacroDefinitionConditionParameter.h │ │ ├── DVTMacroDefinitionConditionSet.h │ │ ├── DVTMacroDefinitionTable.h │ │ ├── DVTMacroExpansion-Protocol.h │ │ ├── DVTMacroExpansionBlock.h │ │ ├── DVTMacroExpansionIntegerMetric.h │ │ ├── DVTMacroExpansionOperator.h │ │ ├── DVTMacroExpansionReplacementOperator.h │ │ ├── DVTMacroExpansionReplacementOperatorWithParseError.h │ │ ├── DVTMacroExpansionReplacementOperator_base.h │ │ ├── DVTMacroExpansionReplacementOperator_dir.h │ │ ├── DVTMacroExpansionReplacementOperator_file.h │ │ ├── DVTMacroExpansionReplacementOperator_suffix.h │ │ ├── DVTMacroExpansionRetrievalOperator.h │ │ ├── DVTMacroExpansionRetrievalOperatorWithParseError.h │ │ ├── DVTMacroExpansionRetrievalOperator_base.h │ │ ├── DVTMacroExpansionRetrievalOperator_c99extidentifier.h │ │ ├── DVTMacroExpansionRetrievalOperator_dir.h │ │ ├── DVTMacroExpansionRetrievalOperator_file.h │ │ ├── DVTMacroExpansionRetrievalOperator_identifier.h │ │ ├── DVTMacroExpansionRetrievalOperator_lower.h │ │ ├── DVTMacroExpansionRetrievalOperator_quote.h │ │ ├── DVTMacroExpansionRetrievalOperator_rfc1034identifier.h │ │ ├── DVTMacroExpansionRetrievalOperator_standardizepath.h │ │ ├── DVTMacroExpansionRetrievalOperator_suffix.h │ │ ├── DVTMacroExpansionRetrievalOperator_upper.h │ │ ├── DVTMacroExpansionRetrievalOperator_xml.h │ │ ├── DVTMacroExpansionScope.h │ │ ├── DVTMacroExpansionStatistics.h │ │ ├── DVTMacroExpansionString.h │ │ ├── DVTMacroExpansionStringList.h │ │ ├── DVTMacroExpansionStringList_Literal.h │ │ ├── DVTMacroExpansionStringList_NonLiteral.h │ │ ├── DVTMacroExpansionString_Concatenation.h │ │ ├── DVTMacroExpansionString_Literal.h │ │ ├── DVTMacroExpansionString_StringSubstitution.h │ │ ├── DVTMacroExpansionString_Substitution.h │ │ ├── DVTMacroNameRegistry.h │ │ ├── DVTMacroNameRegistryRegistration.h │ │ ├── DVTMacroNameString.h │ │ ├── DVTMemorySnapshot.h │ │ ├── DVTMessageTrace.h │ │ ├── DVTMixIn.h │ │ ├── DVTMockBasicDevice.h │ │ ├── DVTMockCodesignableDevice.h │ │ ├── DVTMockDeveloperAccount.h │ │ ├── DVTMockProvisioningProfile.h │ │ ├── DVTMockProvisioningProfileManager.h │ │ ├── DVTMockSigningCertificate.h │ │ ├── DVTMockSigningCertificateSource.h │ │ ├── DVTModelGraphTransactionScope.h │ │ ├── DVTModelObject-Protocol.h │ │ ├── DVTModelObject.h │ │ ├── DVTModelObjectGraph.h │ │ ├── DVTModelTree.h │ │ ├── DVTModelTreeNode.h │ │ ├── DVTMountedFileSystem.h │ │ ├── DVTMutableKnownStringSet.h │ │ ├── DVTMutableOrderedDictionary.h │ │ ├── DVTMutableOrderedSet.h │ │ ├── DVTMutableRangeArray.h │ │ ├── DVTNotificationToken.h │ │ ├── DVTNumberScanner.h │ │ ├── DVTOMCRecord.h │ │ ├── DVTOSVersion.h │ │ ├── DVTObjCPlusPlusSourceModelParser.h │ │ ├── DVTObjCSourceModelParser.h │ │ ├── DVTObjectDeallocationMonitor.h │ │ ├── DVTObservableObjectProxy.h │ │ ├── DVTObserveXPCServicesProtocol-Protocol.h │ │ ├── DVTObserveXPCServicesProtocol_Callback-Protocol.h │ │ ├── DVTObservingBlockToken.h │ │ ├── DVTObservingToken.h │ │ ├── DVTObsoleteUnarchivedObjectPlaceholder.h │ │ ├── DVTOneShotBlock.h │ │ ├── DVTOperation.h │ │ ├── DVTOperationGroup.h │ │ ├── DVTPatienceDiffContext.h │ │ ├── DVTPerformanceCheckpoint.h │ │ ├── DVTPerformanceMetric.h │ │ ├── DVTPerformanceStatistic.h │ │ ├── DVTPinger.h │ │ ├── DVTPipe.h │ │ ├── DVTPlatform.h │ │ ├── DVTPlatformFamily.h │ │ ├── DVTPlugIn.h │ │ ├── DVTPlugInLocalizedString.h │ │ ├── DVTPlugInLocator.h │ │ ├── DVTPlugInManager.h │ │ ├── DVTPlugInScanRecord.h │ │ ├── DVTPortalInfoOperation.h │ │ ├── DVTPortalOperation.h │ │ ├── DVTPortalOperationToken.h │ │ ├── DVTPrimitiveFileDataType.h │ │ ├── DVTProcessInformation.h │ │ ├── DVTProductCategoryProvider-Protocol.h │ │ ├── DVTProductCategoryProviderMacApp.h │ │ ├── DVTProductCategoryProviderUnknown.h │ │ ├── DVTProgressReporting-Protocol.h │ │ ├── DVTPromise-Protocol.h │ │ ├── DVTPropertyListEncoding-Protocol.h │ │ ├── DVTProvisioningProfile-Protocol.h │ │ ├── DVTProvisioningProfileManager.h │ │ ├── DVTProvisioningProfileProvider.h │ │ ├── DVTProvisioningProfileRecord.h │ │ ├── DVTPythonScanner.h │ │ ├── DVTRangeArray.h │ │ ├── DVTReferenceResolutionStrategy.h │ │ ├── DVTReferenceResolver.h │ │ ├── DVTRegExScanner.h │ │ ├── DVTRegexCommandLineOptionDefinition.h │ │ ├── DVTRegistrable-Protocol.h │ │ ├── DVTRegistry.h │ │ ├── DVTRegularExpression.h │ │ ├── DVTRegularExpressionMatch.h │ │ ├── DVTRelativeDateFormatting.h │ │ ├── DVTRescindCallbackObservingToken.h │ │ ├── DVTRevokeCertificateOperation.h │ │ ├── DVTRoleRecord.h │ │ ├── DVTRuleScanner.h │ │ ├── DVTRunLoopToken.h │ │ ├── DVTSDK.h │ │ ├── DVTScannerRule.h │ │ ├── DVTSearchPath.h │ │ ├── DVTSelectorBasedObservingToken.h │ │ ├── DVTSelfInstrumentationSession-Protocol.h │ │ ├── DVTSemaphore.h │ │ ├── DVTServerCancelJoinTeamOperation.h │ │ ├── DVTServerDownloadTeamClientCertificateOperation.h │ │ ├── DVTServerDownloadTeamDevelopmentCertificateOperation.h │ │ ├── DVTServerJoinTeamOperation.h │ │ ├── DVTServerRenewTeamMembershipTeamOperation.h │ │ ├── DVTServerRequestTeamDevelopmentCertificateOperation.h │ │ ├── DVTServerRevokeTeamMembershipTeamOperation.h │ │ ├── DVTServiceDefaults.h │ │ ├── DVTSharedObserver.h │ │ ├── DVTShoeboxIDRecord.h │ │ ├── DVTSigningCertificate.h │ │ ├── DVTSigningCertificateManager.h │ │ ├── DVTSigningCertificateSource.h │ │ ├── DVTSigningCertificateSourceDelegate-Protocol.h │ │ ├── DVTSigningIdentitySnapshot.h │ │ ├── DVTSimpleDeserializer.h │ │ ├── DVTSimplePlainTextDeserializer.h │ │ ├── DVTSimplePlainTextSerializer.h │ │ ├── DVTSimpleSerialization-Protocol.h │ │ ├── DVTSimpleSerializer.h │ │ ├── DVTSimpleXMLWriter.h │ │ ├── DVTSourceCodeLanguage.h │ │ ├── DVTSourceCodeSymbolKind.h │ │ ├── DVTSourceFileCodeCoverageCoveredRange.h │ │ ├── DVTSourceFileCodeCoverageRange.h │ │ ├── DVTSourceFileCodeCoverageUncoveredRange.h │ │ ├── DVTSourceFileHighlightingRange.h │ │ ├── DVTSourceFileLineCoverageData.h │ │ ├── DVTSourceModel.h │ │ ├── DVTSourceModelItem.h │ │ ├── DVTSourceModelParser.h │ │ ├── DVTSourceModelParserInteriorProductionRule.h │ │ ├── DVTSourceModelParserProductionRule.h │ │ ├── DVTSourceModelParserProductionState.h │ │ ├── DVTSourceNodeTypes.h │ │ ├── DVTSourceScanner.h │ │ ├── DVTSourceSpecification.h │ │ ├── DVTSourceTokens.h │ │ ├── DVTSpecificApplicationProvider-Protocol.h │ │ ├── DVTStackBacktrace.h │ │ ├── DVTStackBacktraceFrame.h │ │ ├── DVTStateRepository.h │ │ ├── DVTStateToken.h │ │ ├── DVTStreamingZip.h │ │ ├── DVTStreamingZipArchiver-Protocol.h │ │ ├── DVTStringBuffer.h │ │ ├── DVTStringRepresentationPersistable-Protocol.h │ │ ├── DVTSyntaxTypeSpecification.h │ │ ├── DVTSynthesizedFileDataType.h │ │ ├── DVTSysmonBridge.h │ │ ├── DVTSystemActivityToken.h │ │ ├── DVTSystemEvents.h │ │ ├── DVTSystemStatisticsMeasurement.h │ │ ├── DVTTarjanSCCVertex.h │ │ ├── DVTTask.h │ │ ├── DVTTeamOperationBase.h │ │ ├── DVTTeamRecord.h │ │ ├── DVTTestPerformanceMetricOutput.h │ │ ├── DVTTextDocumentLocation.h │ │ ├── DVTTextFinder.h │ │ ├── DVTTextPreferences.h │ │ ├── DVTTextReplacable-Protocol.h │ │ ├── DVTTextlikeFindDescriptor-Protocol.h │ │ ├── DVTTimeSlicedMainThreadWorkQueue.h │ │ ├── DVTTimerBlockWrapper.h │ │ ├── DVTToolchain.h │ │ ├── DVTToolchainRegistry.h │ │ ├── DVTToolsInfo.h │ │ ├── DVTToolsVersion.h │ │ ├── DVTUnknownPrimitiveFileDataType.h │ │ ├── DVTUpdateAppIDOperation.h │ │ ├── DVTUpdatePortalDatabaseOperation.h │ │ ├── DVTUserDefaultsLeastRecentlyUsedCache.h │ │ ├── DVTUserNotificationCenter.h │ │ ├── DVTVersion.h │ │ ├── DVTWeakInterposer.h │ │ ├── DVTWeakInterposer_ProxyHelperReference.h │ │ ├── DVTWeakInterposer_RuntimeWeakReference.h │ │ ├── DVTXMLArchiver.h │ │ ├── DVTXMLUnarchiver.h │ │ ├── DVTXMLUnarchiving-Protocol.h │ │ ├── DVTXPCServiceInformation.h │ │ ├── DVTXPCServiceObserver.h │ │ ├── DataGatheringNSURLConnectionDelegate.h │ │ ├── DataWritingNSURLConnectionDelegate.h │ │ ├── ITunesSoftwareServiceUploadDelegate-Protocol.h │ │ ├── NSArray-DVTDiffHashing.h │ │ ├── NSArray-DVTFoundationClassAdditions.h │ │ ├── NSArray-DVTMacroExpansion.h │ │ ├── NSArray-DVTMacroExpansionAdditions.h │ │ ├── NSArray-DVTObservingConvenience.h │ │ ├── NSArray-DVTRangeArrayAdditions.h │ │ ├── NSArray-DVTShellUtilitiesAdditions.h │ │ ├── NSBlockOperation-DVTNSOperationAdditions.h │ │ ├── NSBundle-DVTNSBundleAdditions.h │ │ ├── NSBundle-DVTOnDemandResourcesAdditions.h │ │ ├── NSCharacterSet-DVTFoundationClassAdditions.h │ │ ├── NSCoding-Protocol.h │ │ ├── NSCopying-Protocol.h │ │ ├── NSData-DVTDiffHashing.h │ │ ├── NSData-DVTFoundationClassAdditions.h │ │ ├── NSData-DVTNSDataStdIO.h │ │ ├── NSData-DVTSecurityAdditions.h │ │ ├── NSDate-DVTFoundationClassAdditions.h │ │ ├── NSDictionary-ADCDownloadAuthenticationResponse.h │ │ ├── NSDictionary-DVTDiffHashing.h │ │ ├── NSDictionary-DVTFoundationClassAdditions.h │ │ ├── NSDictionary-DVTMacroExpansionAdditions.h │ │ ├── NSDistributedNotificationCenter-DVTNSNotificationCenterAdditions.h │ │ ├── NSError-DVTFoundationClassAdditions.h │ │ ├── NSError-DVTSecurityAdditions.h │ │ ├── NSFastEnumeration-Protocol.h │ │ ├── NSFileHandle-DVTNSFileHandleAdditions.h │ │ ├── NSFileHandle-DVTTaskAdditions.h │ │ ├── NSFileManager-DVTNSFileManagerAdditions.h │ │ ├── NSHTTPURLResponse-DVTHTTPCookies.h │ │ ├── NSInputStream-DVTFoundationClassAdditions.h │ │ ├── NSKeyedUnarchiverDelegate-Protocol.h │ │ ├── NSLock-DVTFoundationExtensions.h │ │ ├── NSMapTable-DVTNSMapTableAdditions.h │ │ ├── NSMutableArray-DVTFoundationClassAdditions.h │ │ ├── NSMutableCopying-Protocol.h │ │ ├── NSMutableData-DVTFoundationClassAdditions.h │ │ ├── NSMutableData-DVTNSDataStdIO.h │ │ ├── NSMutableDictionary-DVTFoundationClassAdditions.h │ │ ├── NSMutableSet-DVTNSMutableSetAdditions.h │ │ ├── NSMutableString-DVTFoundationClassAdditions.h │ │ ├── NSMutableURLRequest-DVTHTTPCookies.h │ │ ├── NSNotificationCenter-DVTNSNotificationCenterAdditions.h │ │ ├── NSNumber-DVTDiffHashing.h │ │ ├── NSObject-DVTArcSupport.h │ │ ├── NSObject-DVTAssertionSupport.h │ │ ├── NSObject-DVTExtraXMArchiveDataAdditions.h │ │ ├── NSObject-DVTInvalidation.h │ │ ├── NSObject-DVTInvalidation_Private.h │ │ ├── NSObject-DVTKVCMutableCollectionPropertySupport.h │ │ ├── NSObject-DVTKVOAssertionValidationMethods.h │ │ ├── NSObject-DVTNSRunLoopAdditions.h │ │ ├── NSObject-DVTObjectDeallocationMonitorAdditions.h │ │ ├── NSObject-DVTObservingConvenience.h │ │ ├── NSObject-DVTPropertyLinking.h │ │ ├── NSObject-DVTSelectorAdditions.h │ │ ├── NSObject-DVTSharedObserverAccess.h │ │ ├── NSObject-DVTSimpleSerialization.h │ │ ├── NSObject-DVTXMLArchiving.h │ │ ├── NSObject-DVTXMLUnarchivingPartial.h │ │ ├── NSObject-Protocol.h │ │ ├── NSOperation-DVTNSOperationAdditions.h │ │ ├── NSOutputStream-DVTFoundationClassAdditions.h │ │ ├── NSPointerArray-DVTNSPointerArrayAdditions.h │ │ ├── NSProcessInfo-DVTNSProcessInfoAdditions.h │ │ ├── NSProcessInfo-DVTNSProcessInfoCachedEnvironmentAdditions.h │ │ ├── NSPropertyListSerialization-DVTNSPropertyListSerializationAdditions.h │ │ ├── NSRecursiveLock-DVTFoundationExtensions.h │ │ ├── NSRunLoop-DVTNSRunLoopAdditions.h │ │ ├── NSSecureCoding-Protocol.h │ │ ├── NSSet-DVTNSSetAdditions.h │ │ ├── NSSortDescriptor-DVTNSSortDescriptorAdditions.h │ │ ├── NSString-DVTDiffHashing.h │ │ ├── NSString-DVTFileSystemRepresentationProviding.h │ │ ├── NSString-DVTFoundationANSIText.h │ │ ├── NSString-DVTFoundationClassAdditions.h │ │ ├── NSString-DVTFoundationClassAdditionsUnicode.h │ │ ├── NSString-DVTMacroDefinitionAdditions.h │ │ ├── NSString-DVTMacroExpansion.h │ │ ├── NSString-DVTMacroExpansionAdditions.h │ │ ├── NSString-DVTMacroNameStringCompatibility.h │ │ ├── NSThread-DVTObjectAllocationTracking.h │ │ ├── NSTimer-DVTNSTimerAdditions.h │ │ ├── NSURL-DVTNSURLAdditions.h │ │ ├── NSURL-DVTSecurityAdditions.h │ │ ├── NSURLConnectionDataDelegate-Protocol.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSURLProtectionSpace-DVTSecurityAdditions.h │ │ ├── NSUserDefaults-DVTNSUserDefaultsAdditions.h │ │ ├── NSUserNotificationCenterDelegate-Protocol.h │ │ ├── NSValue-DVTGeometryAdditions.h │ │ ├── NSXMLElement-DVTFoundationClassAdditions.h │ │ ├── _DVTCancellationBlockToken.h │ │ ├── _DVTDeallocationMonitorInfo.h │ │ ├── _DVTDefferedBlock.h │ │ ├── _DVTDelayedInvocationNotificationHandlerNotificationKey.h │ │ ├── _DVTDeviceLocatorTracker.h │ │ ├── _DVTDiffHashingDictionaryDiffHashContext.h │ │ ├── _DVTDiffLineDataSourceConsistentCopy.h │ │ ├── _DVTErrorRecoveryHandler.h │ │ ├── _DVTFilePathAssoc.h │ │ ├── _DVTFoundationPrivateClassForFindingBundle.h │ │ ├── _DVTLogObjectsRequest.h │ │ ├── _DVTNotificationReceiver.h │ │ ├── _DVTPlugInDescriptor.h │ │ ├── _DVTTimeSlicedMainThreadActiveWorkQueues.h │ │ ├── _DVTTimeSlicedMainThreadOrderedUniquingWorkQueue.h │ │ ├── _DVTTimeSlicedMainThreadUnorderedNonUniquingWorkQueue.h │ │ ├── _DVTTimeSlicedMainThreadUnorderedUniquingWorkQueue.h │ │ ├── _DVTWeakInterposerHelper.h │ │ ├── _DVTXMLParsingState.h │ │ ├── __ARCLiteIndexedSubscripting__-Protocol.h │ │ └── __ARCLiteKeyedSubscripting__-Protocol.h │ │ ├── DVTKit │ │ ├── Animation.h │ │ ├── AnimationParameters.h │ │ ├── CALayer-DVTCALayerAdditions.h │ │ ├── CATextLayer-DVTCALayerAdditions.h │ │ ├── CATransaction-DVTCATransactionAdditions.h │ │ ├── CDStructures.h │ │ ├── DTDKMultipleSelectionDialogController.h │ │ ├── DTDKSelectionDialogController.h │ │ ├── DTDKSingleSelectionDialogController.h │ │ ├── DVTAbstractColorPicker.h │ │ ├── DVTAbstractGraphLayer.h │ │ ├── DVTAbstractLibraryGroup.h │ │ ├── DVTAccessoryViewAnnotation.h │ │ ├── DVTAccessoryViewAnnotationShowAnnotationTrack-Protocol.h │ │ ├── DVTAnnotatingTypesetter.h │ │ ├── DVTAnnotation.h │ │ ├── DVTAnnotationContext.h │ │ ├── DVTAnnotationManager.h │ │ ├── DVTAnnotationManagerDelegate-Protocol.h │ │ ├── DVTAnnotationProvider.h │ │ ├── DVTApplication.h │ │ ├── DVTApplicationActionMonitorToken.h │ │ ├── DVTAssetAndGroupSet.h │ │ ├── DVTAssetDetailTextView.h │ │ ├── DVTAssetDetailView.h │ │ ├── DVTAssetDetailViewDelegate-Protocol.h │ │ ├── DVTAudioLibraryDetailController.h │ │ ├── DVTAutoExpandingScrollView.h │ │ ├── DVTBarBackground.h │ │ ├── DVTBasicDevice-Protocol.h │ │ ├── DVTBasicDeviceUI-Protocol.h │ │ ├── DVTBasicFindBar.h │ │ ├── DVTBezelAlertPanel.h │ │ ├── DVTBezelAlertView.h │ │ ├── DVTBindingHelper.h │ │ ├── DVTBindingHelperBindingInfo.h │ │ ├── DVTBindingInfo.h │ │ ├── DVTBindingToken.h │ │ ├── DVTBorderedView.h │ │ ├── DVTButtonCell.h │ │ ├── DVTButtonImageTitleCell.h │ │ ├── DVTButtonTextField.h │ │ ├── DVTButtonTextFieldCell.h │ │ ├── DVTCachedImageView.h │ │ ├── DVTCancellable-Protocol.h │ │ ├── DVTCapacitySegment.h │ │ ├── DVTCapacityView.h │ │ ├── DVTCapacityViewController.h │ │ ├── DVTChoice.h │ │ ├── DVTChooserView.h │ │ ├── DVTCircularCapacityView.h │ │ ├── DVTCircularCapacityViewController.h │ │ ├── DVTClickAvoidingLayer.h │ │ ├── DVTClickableLayer-Protocol.h │ │ ├── DVTClickableLayer.h │ │ ├── DVTClickableTextLayer.h │ │ ├── DVTClippedTabsIndicator.h │ │ ├── DVTCodeLibraryDetailController.h │ │ ├── DVTCodesignableDevice-Protocol.h │ │ ├── DVTCollectCertificateFailuresOperation-UIExtensions.h │ │ ├── DVTColorLiteralToObjectLiteralValueTransformer.h │ │ ├── DVTColorPickerChooserContentView.h │ │ ├── DVTColorPickerChooserView.h │ │ ├── DVTColorPickerChooserViewColorSwatch.h │ │ ├── DVTColorPickerPopUpButton.h │ │ ├── DVTColorSwatchLabel.h │ │ ├── DVTColorSwatchView.h │ │ ├── DVTColorSwatchWithComponentsView.h │ │ ├── DVTColorValueTransformer.h │ │ ├── DVTColoredSpinner.h │ │ ├── DVTComparisonConfigurationManager.h │ │ ├── DVTComparisonScrollContentAreaDelegate-Protocol.h │ │ ├── DVTComparisonScrollCoordinator.h │ │ ├── DVTComparisonScroller.h │ │ ├── DVTComparisonSplitView.h │ │ ├── DVTCompletingTextView.h │ │ ├── DVTCompletingTextViewDelegate-Protocol.h │ │ ├── DVTControllerContentView.h │ │ ├── DVTControllerContentViewViewControllerAdditions-Protocol.h │ │ ├── DVTCopyTextField.h │ │ ├── DVTCopyTextFieldCell.h │ │ ├── DVTDefaultLineGraphLayerDataSource.h │ │ ├── DVTDefaultSourceLanguageService.h │ │ ├── DVTDelayedMenuButton.h │ │ ├── DVTDelayedMenuButtonCell.h │ │ ├── DVTDelayedMenuButtonDelegate-Protocol.h │ │ ├── DVTDelayedMenuGradientImageButton.h │ │ ├── DVTDelayedMenuGradientImageButtonCell.h │ │ ├── DVTDelegateValidator-Protocol.h │ │ ├── DVTDetachedTabDraggingImageToWindowTransitionController.h │ │ ├── DVTDeveloperPortalDatabase-UIExtensions.h │ │ ├── DVTDeveloperPortalFunctions.h │ │ ├── DVTDevice-KitAdditions.h │ │ ├── DVTDeviceApplicationInstaller-Protocol.h │ │ ├── DVTDeviceApplicationProvider-Protocol.h │ │ ├── DVTDeviceCategoryToTextColorValueTransformer.h │ │ ├── DVTDeviceLocator-KitAdditions.h │ │ ├── DVTDeviceLogsSheetController.h │ │ ├── DVTDeviceProvisioningProfilesSheetController.h │ │ ├── DVTDeviceSummaryAppContainerSheetController.h │ │ ├── DVTDeviceSummaryAppsViewController.h │ │ ├── DVTDeviceSummarySliceViewController.h │ │ ├── DVTDeviceSummaryTableCellView.h │ │ ├── DVTDeviceSummaryViewController.h │ │ ├── DVTDeviceTableCellView.h │ │ ├── DVTDeviceViolaterTextField.h │ │ ├── DVTDevicesDebugInfoFixupCenter.h │ │ ├── DVTDevicesWindowContentAreaViewController.h │ │ ├── DVTDevicesWindowController.h │ │ ├── DVTDevicesWindowDetailViewController-Protocol.h │ │ ├── DVTDiffContextThreeWay.h │ │ ├── DVTDiffDescriptor-FileMergeCompat.h │ │ ├── DVTDiffDescriptor-FileMergeCompat_ReallyInternal.h │ │ ├── DVTDiffSession.h │ │ ├── DVTDiffTextStorageDataSource.h │ │ ├── DVTDisclosureHeaderView.h │ │ ├── DVTDisclosureHeaderViewDelegate-Protocol.h │ │ ├── DVTDisclosureView.h │ │ ├── DVTDragDeleteTarget.h │ │ ├── DVTDragManager.h │ │ ├── DVTDraggableView-Protocol.h │ │ ├── DVTDraggedImageState.h │ │ ├── DVTDraggedImageStateTransitionRegistry.h │ │ ├── DVTDraggedImageStateTransitionView.h │ │ ├── DVTDraggedObjectsImageState.h │ │ ├── DVTDraggedObjectsTransitionView.h │ │ ├── DVTDraggingContext.h │ │ ├── DVTDraggingInfo-Protocol.h │ │ ├── DVTDynamicTableHeaderView.h │ │ ├── DVTDynamicTableRowProgressIndicatorView.h │ │ ├── DVTDynamicTableRowView.h │ │ ├── DVTDynamicTableRowViewSupport-Protocol.h │ │ ├── DVTDynamicTableView.h │ │ ├── DVTEditor-Protocol.h │ │ ├── DVTFavoriteTableCellView.h │ │ ├── DVTFavoriteTableRowView.h │ │ ├── DVTFileIconCreator.h │ │ ├── DVTFileIconCreatorImageRep.h │ │ ├── DVTFileLiteralToObjectLiteralValueTransformer.h │ │ ├── DVTFilePath-DVTFileIconAdditions.h │ │ ├── DVTFilePathField.h │ │ ├── DVTFilePathFieldCell.h │ │ ├── DVTFilteringMenu.h │ │ ├── DVTFilteringMenuSearchView.h │ │ ├── DVTFilteringMenuSearchViewDelegate-Protocol.h │ │ ├── DVTFindBar.h │ │ ├── DVTFindBarControllerContentView.h │ │ ├── DVTFindBarOptionsCtrl.h │ │ ├── DVTFindBarTextFieldCell.h │ │ ├── DVTFindPattern.h │ │ ├── DVTFindPatternAttachment.h │ │ ├── DVTFindPatternAttachmentCell.h │ │ ├── DVTFindPatternComboBox.h │ │ ├── DVTFindPatternDescriptor.h │ │ ├── DVTFindPatternField-Protocol.h │ │ ├── DVTFindPatternFieldEditor.h │ │ ├── DVTFindPatternManager-Protocol.h │ │ ├── DVTFindPatternSearchField.h │ │ ├── DVTFindPatternTextField.h │ │ ├── DVTFirstResponderDrawingStrategy.h │ │ ├── DVTFirstResponderShowingView-Protocol.h │ │ ├── DVTFlatButtonCell.h │ │ ├── DVTFlatPopUpButtonCell.h │ │ ├── DVTFlatProgressIndicator.h │ │ ├── DVTFlatSegmentedControlCell.h │ │ ├── DVTFoldingGlyphGenerator.h │ │ ├── DVTFoldingLayoutManager.h │ │ ├── DVTFoldingLayoutManagerDelegate-Protocol.h │ │ ├── DVTFoldingManager.h │ │ ├── DVTFoldingManagerDelegate-Protocol.h │ │ ├── DVTFoldingTokenType.h │ │ ├── DVTFoldingTypesetter.h │ │ ├── DVTFontAndColorTheme.h │ │ ├── DVTFontDataSource.h │ │ ├── DVTFontPopUpViewController.h │ │ ├── DVTFontTextField.h │ │ ├── DVTFontTextFieldCell.h │ │ ├── DVTFontTextFieldDataSource-Protocol.h │ │ ├── DVTFontValue.h │ │ ├── DVTFrameworkIconProvider.h │ │ ├── DVTGauge.h │ │ ├── DVTGenericButtonViewController.h │ │ ├── DVTGradientHorizontalSeparatorGrooved.h │ │ ├── DVTGradientHorizontalSeparatorTapered.h │ │ ├── DVTGradientImageButton.h │ │ ├── DVTGradientImageButtonCell.h │ │ ├── DVTGradientImagePopUpButton.h │ │ ├── DVTGradientImagePopUpButtonCell.h │ │ ├── DVTGradientStyleButton-Protocol.h │ │ ├── DVTGraph.h │ │ ├── DVTGraphLayer-Protocol.h │ │ ├── DVTGraphLayerSelectionDetails.h │ │ ├── DVTGraphPopoverViewController.h │ │ ├── DVTGraphStyle.h │ │ ├── DVTGroupedAssetHighlightView.h │ │ ├── DVTGroupedTileView.h │ │ ├── DVTGrowMiniWindowAnimation.h │ │ ├── DVTHUDPopUpContentViewController.h │ │ ├── DVTHUDPopUpController.h │ │ ├── DVTHUDPopUpView.h │ │ ├── DVTHUDPopUpWindow.h │ │ ├── DVTHelperApplication.h │ │ ├── DVTHorizontalCapacityView.h │ │ ├── DVTHorizontalCapacityViewController.h │ │ ├── DVTIconOverrideProvider-Protocol.h │ │ ├── DVTIconSet.h │ │ ├── DVTIconSetComponent.h │ │ ├── DVTIdentityDragImageStateTransition.h │ │ ├── DVTImageAndTextCell.h │ │ ├── DVTImageAndTextColumn.h │ │ ├── DVTImageAndTextLayer.h │ │ ├── DVTImageLibraryDetailController.h │ │ ├── DVTImageLiteralToObjectLiteralValueTransformer.h │ │ ├── DVTImagePopUpButton.h │ │ ├── DVTImagePopUpButtonCell.h │ │ ├── DVTIncrementalFindBar.h │ │ ├── DVTInfoPlistValueCell.h │ │ ├── DVTInvalidDataIndicatorView.h │ │ ├── DVTInvalidation-Protocol.h │ │ ├── DVTIssueDisplayingView-Protocol.h │ │ ├── DVTLayerController.h │ │ ├── DVTLayerHostingView.h │ │ ├── DVTLayerImageExporter.h │ │ ├── DVTLayoutManager.h │ │ ├── DVTLayoutManagerDelegate-Protocol.h │ │ ├── DVTLayoutViewFrameChangeStack.h │ │ ├── DVTLayoutView_ML.h │ │ ├── DVTLayoutView_MLObservanceKey.h │ │ ├── DVTLibrary.h │ │ ├── DVTLibraryAsset.h │ │ ├── DVTLibraryAssetView.h │ │ ├── DVTLibraryController.h │ │ ├── DVTLibraryDetailController.h │ │ ├── DVTLibraryDetailEditorController.h │ │ ├── DVTLibraryDetailPopUpContentController.h │ │ ├── DVTLibraryDetailPopUpController.h │ │ ├── DVTLibraryGroup.h │ │ ├── DVTLibraryGroupObserver-Protocol.h │ │ ├── DVTLineGraphLayer.h │ │ ├── DVTLineGraphLayerDataSource-Protocol.h │ │ ├── DVTLineGraphLayerStyle.h │ │ ├── DVTLineOffsetAwareStringWrapper.h │ │ ├── DVTLinkView.h │ │ ├── DVTLocalComputer-KitAdditions.h │ │ ├── DVTLocalProcessInformation-DVTLocalProcessInformationAdditions.h │ │ ├── DVTLozengeTextField.h │ │ ├── DVTMainStatusAwareButton.h │ │ ├── DVTMainViewControllerDrawingStrategy.h │ │ ├── DVTMainViewControllerMonitor.h │ │ ├── DVTMarkedScroller.h │ │ ├── DVTMenuBuilder-Protocol.h │ │ ├── DVTMergedSortedArray.h │ │ ├── DVTMessageBubbleAnnotation.h │ │ ├── DVTMessageBubbleView.h │ │ ├── DVTMeterTheme.h │ │ ├── DVTMeterThreshold.h │ │ ├── DVTMeterValue.h │ │ ├── DVTMeterView.h │ │ ├── DVTMockupViewController.h │ │ ├── DVTModernTableHeaderCell.h │ │ ├── DVTMorphingDragImageController.h │ │ ├── DVTMorphingDragImageDropTarget-Protocol.h │ │ ├── DVTMorphingDragImageView.h │ │ ├── DVTNSImageDeallocTattleTale.h │ │ ├── DVTNewTabButton.h │ │ ├── DVTNewTabButtonOldStyle.h │ │ ├── DVTNoFirstResponderPopover.h │ │ ├── DVTNonLossyASCIIFormatter.h │ │ ├── DVTNumberToTextColorTransformer.h │ │ ├── DVTObjectBindingUtilities.h │ │ ├── DVTObjectLiteral.h │ │ ├── DVTObjectLiteralValueTransformer-Protocol.h │ │ ├── DVTObjectLiteralValueTransformer.h │ │ ├── DVTOpenQuicklyPattern.h │ │ ├── DVTOutlineView.h │ │ ├── DVTPDFBlockCapturingView.h │ │ ├── DVTPageController.h │ │ ├── DVTPageControllerDots-Protocol.h │ │ ├── DVTPagingDotView.h │ │ ├── DVTPagingSheetWindowController.h │ │ ├── DVTPagingSheetWindowController_AppKitAutoLayout.h │ │ ├── DVTPasswordView.h │ │ ├── DVTPasswordWindowController.h │ │ ├── DVTPathView.h │ │ ├── DVTPatternString.h │ │ ├── DVTPlainTableHeaderView.h │ │ ├── DVTPlistArrayNode.h │ │ ├── DVTPlistBooleanNode.h │ │ ├── DVTPlistComboBoxCell.h │ │ ├── DVTPlistCommentNode.h │ │ ├── DVTPlistDataFormatter.h │ │ ├── DVTPlistDataNode.h │ │ ├── DVTPlistDateNode.h │ │ ├── DVTPlistDictionaryNode.h │ │ ├── DVTPlistDocumentLocation.h │ │ ├── DVTPlistInvisibleOutlineCell.h │ │ ├── DVTPlistInvisibleOutlineHeaderCell.h │ │ ├── DVTPlistModel.h │ │ ├── DVTPlistNode.h │ │ ├── DVTPlistNumberNode.h │ │ ├── DVTPlistOutlineHeaderCell.h │ │ ├── DVTPlistOutlineHeaderView.h │ │ ├── DVTPlistOutlineView.h │ │ ├── DVTPlistOutlineViewDelegate-Protocol.h │ │ ├── DVTPlistParser.h │ │ ├── DVTPlistPopupCell.h │ │ ├── DVTPlistScrollView.h │ │ ├── DVTPlistSelection.h │ │ ├── DVTPlistStringNode.h │ │ ├── DVTPlistStructureDefinition.h │ │ ├── DVTPlistTableColumn.h │ │ ├── DVTPlistTextFieldCell.h │ │ ├── DVTPlistTitledPopupCell.h │ │ ├── DVTPlistViewController.h │ │ ├── DVTPlistViewControllerProtocol-Protocol.h │ │ ├── DVTPlistXMLParser.h │ │ ├── DVTPointView.h │ │ ├── DVTPointViewController.h │ │ ├── DVTPopUpButtonCell.h │ │ ├── DVTPopoverContentViewController.h │ │ ├── DVTPreferenceSet-Protocol.h │ │ ├── DVTPreferenceSetManager.h │ │ ├── DVTProcessInformation-DVTProcessInformationAdditions.h │ │ ├── DVTProgressIndicatorProvidingView-Protocol.h │ │ ├── DVTQuickLookLibraryDetailController.h │ │ ├── DVTQuickLookLibraryDetailItem.h │ │ ├── DVTRangeSliderCell.h │ │ ├── DVTRangeView.h │ │ ├── DVTRangeViewController.h │ │ ├── DVTRectView.h │ │ ├── DVTRectViewController.h │ │ ├── DVTReplacementView.h │ │ ├── DVTReplacementViewDelegate-Protocol.h │ │ ├── DVTReportDisclosureHeaderView.h │ │ ├── DVTReportDisclosureView.h │ │ ├── DVTResponderErrorSheetContext.h │ │ ├── DVTReverseDragImageStateTransitionPrototype.h │ │ ├── DVTRolloverImageButton.h │ │ ├── DVTRolloverTracker.h │ │ ├── DVTRolloverTrackingButton.h │ │ ├── DVTSIPrefixNumberFormatter.h │ │ ├── DVTScaleInWindowAnimator.h │ │ ├── DVTScopeBarButton.h │ │ ├── DVTScopeBarButtonCell.h │ │ ├── DVTScopeBarContentController-Protocol.h │ │ ├── DVTScopeBarController.h │ │ ├── DVTScopeBarView.h │ │ ├── DVTScopeBarsManager.h │ │ ├── DVTScopeBarsManagerAnimation.h │ │ ├── DVTScriptSourceTextView.h │ │ ├── DVTScrollView.h │ │ ├── DVTScrollableTabBarClipView.h │ │ ├── DVTScrollableTabBarView.h │ │ ├── DVTScrollableTabBarViewAccessoryButton.h │ │ ├── DVTScrollableTabBarViewAnimation.h │ │ ├── DVTScrollableTabBarViewButton.h │ │ ├── DVTScrollableTabBarViewButtonCell.h │ │ ├── DVTScrollableTabButton.h │ │ ├── DVTSearchField.h │ │ ├── DVTSearchFieldCell.h │ │ ├── DVTSearchFieldTextEditor.h │ │ ├── DVTSegmentColorWell.h │ │ ├── DVTSegmentedControl.h │ │ ├── DVTShadowDrawing-Protocol.h │ │ ├── DVTSharedFindState.h │ │ ├── DVTSharedLayerDelegate.h │ │ ├── DVTSimpleCrossfadeDragImageStateTransition.h │ │ ├── DVTSimpleDraggedImageState.h │ │ ├── DVTSizeView.h │ │ ├── DVTSizeViewController.h │ │ ├── DVTSliceLayoutManager.h │ │ ├── DVTSliceTextView.h │ │ ├── DVTSlidingAnimation.h │ │ ├── DVTSlidingViewsBar.h │ │ ├── DVTSourceBufferProvider-Protocol.h │ │ ├── DVTSourceCodeComparisonAnnotation.h │ │ ├── DVTSourceCodeComparisonAnnotationContext-Protocol.h │ │ ├── DVTSourceCodeComparisonAnnotationProvider.h │ │ ├── DVTSourceCodeSymbolKind-DVTSourceCodeSymbolKindKitAdditions.h │ │ ├── DVTSourceCodeTreeNodeFold.h │ │ ├── DVTSourceCodeTreeNodeInlineTokenAttachmentCell.h │ │ ├── DVTSourceExpression.h │ │ ├── DVTSourceLandmarkItem.h │ │ ├── DVTSourceLandmarkItemDelegate-Protocol.h │ │ ├── DVTSourceLanguageService.h │ │ ├── DVTSourceLanguageServiceDelegate-Protocol.h │ │ ├── DVTSourceLanguageSourceModelService-Protocol.h │ │ ├── DVTSourceLanguageSyntaxTypeService-Protocol.h │ │ ├── DVTSourceTextScrollView.h │ │ ├── DVTSourceTextScrollViewDelegate-Protocol.h │ │ ├── DVTSourceTextSelectionAccessibilityProxy.h │ │ ├── DVTSourceTextView.h │ │ ├── DVTSourceTextViewDelegate-Protocol.h │ │ ├── DVTSpacerButton.h │ │ ├── DVTSplitView.h │ │ ├── DVTSplitViewAnimation.h │ │ ├── DVTSplitViewDelegate-Protocol.h │ │ ├── DVTSplitViewItem.h │ │ ├── DVTSplitViewItemAnimatorProxy.h │ │ ├── DVTStackView_AppKitAutolayout.h │ │ ├── DVTStackView_ML.h │ │ ├── DVTStatefulObject-Protocol.h │ │ ├── DVTStepperTextField.h │ │ ├── DVTStepperTextFieldCell.h │ │ ├── DVTStepperTextFieldFormatter.h │ │ ├── DVTStringTextCompletionItem.h │ │ ├── DVTTabBarClippedItemsIndicator.h │ │ ├── DVTTabBarClippedItemsIndicatorCell.h │ │ ├── DVTTabBarEnclosureView.h │ │ ├── DVTTabBarView.h │ │ ├── DVTTabButton.h │ │ ├── DVTTabChooserView.h │ │ ├── DVTTabChooserViewChoiceAccessibilityProxy.h │ │ ├── DVTTabChooserViewDelegate-Protocol.h │ │ ├── DVTTabChooserViewSelectedObjectsValueTransformer.h │ │ ├── DVTTabbedWindowControlling-Protocol.h │ │ ├── DVTTabbedWindowTabViewItem.h │ │ ├── DVTTableCellView.h │ │ ├── DVTTableCellViewFormatter.h │ │ ├── DVTTableCellViewLineWrappingTextStorage.h │ │ ├── DVTTableCellViewMultiLine.h │ │ ├── DVTTableCellViewMultiLineTextFieldCell.h │ │ ├── DVTTableCellViewOneLine.h │ │ ├── DVTTableCellViewTextField.h │ │ ├── DVTTableCellViewTextFieldCell.h │ │ ├── DVTTableCellViewTwoLine.h │ │ ├── DVTTableCellViewVibrantView.h │ │ ├── DVTTableHeaderCell.h │ │ ├── DVTTableRowView.h │ │ ├── DVTTableView.h │ │ ├── DVTTableViewDelegate-Protocol.h │ │ ├── DVTTextAnnotation.h │ │ ├── DVTTextAnnotationAccessibilityProxyItem.h │ │ ├── DVTTextAnnotationIndicatorAnimation.h │ │ ├── DVTTextAnnotationTheme.h │ │ ├── DVTTextCompletionController.h │ │ ├── DVTTextCompletionDataSource.h │ │ ├── DVTTextCompletionDataSourceDelegate-Protocol.h │ │ ├── DVTTextCompletionGeneratorOperation.h │ │ ├── DVTTextCompletionImportAbsolutePathStrategy.h │ │ ├── DVTTextCompletionInlinePreviewController.h │ │ ├── DVTTextCompletionItem-Protocol.h │ │ ├── DVTTextCompletionKeywordsStrategy.h │ │ ├── DVTTextCompletionListWindowController.h │ │ ├── DVTTextCompletionSession.h │ │ ├── DVTTextCompletionStrategy.h │ │ ├── DVTTextCompletionWindow.h │ │ ├── DVTTextCompletionWindowResizeAnimation.h │ │ ├── DVTTextCompletionWordsInFileStrategy.h │ │ ├── DVTTextFindable-Protocol.h │ │ ├── DVTTextFold.h │ │ ├── DVTTextFoldInlineTokenAttachment.h │ │ ├── DVTTextFoldInlineTokenAttachmentCell.h │ │ ├── DVTTextFoldInlineTokenFormatter.h │ │ ├── DVTTextFoldLiteralTokenAttachmentCell.h │ │ ├── DVTTextLayer.h │ │ ├── DVTTextLibraryDetailController.h │ │ ├── DVTTextPageGuideVisualization.h │ │ ├── DVTTextPreferences-DVTSourceTextViewAdditions.h │ │ ├── DVTTextReplacable-Protocol.h │ │ ├── DVTTextSidebarView.h │ │ ├── DVTTextStorage.h │ │ ├── DVTTextStorageCommonUndoHelper.h │ │ ├── DVTTextStorageDelegate-Protocol.h │ │ ├── DVTTextUndoMultiEdits.h │ │ ├── DVTTextView.h │ │ ├── DVTTextViewWithPlaceholder.h │ │ ├── DVTTextVisualization.h │ │ ├── DVTTextVisualizationFadeAnimation.h │ │ ├── DVTTextlikeFindDescriptor-Protocol.h │ │ ├── DVTTheme.h │ │ ├── DVTThemeEditorWindowController.h │ │ ├── DVTTileView.h │ │ ├── DVTTileViewItem.h │ │ ├── DVTTitleBarButton.h │ │ ├── DVTToggleSwitch.h │ │ ├── DVTToolTip.h │ │ ├── DVTToolTipManager.h │ │ ├── DVTToolTipView.h │ │ ├── DVTToolbarPopUpViewController.h │ │ ├── DVTToolbarViewController.h │ │ ├── DVTTutorialController.h │ │ ├── DVTTutorialViewController.h │ │ ├── DVTTypeCompletionHandler.h │ │ ├── DVTURLMatch.h │ │ ├── DVTURLPreviewViewController.h │ │ ├── DVTURLifier.h │ │ ├── DVTUndoManager.h │ │ ├── DVTUndoReplaceCharacters.h │ │ ├── DVTUndoTyping.h │ │ ├── DVTVerticalCapacityView.h │ │ ├── DVTVerticalCapacityViewController.h │ │ ├── DVTViewController.h │ │ ├── DVTViewControllerToolbarItem.h │ │ ├── DVTWebViewTextAttachmentCell.h │ │ ├── DVTWindowActivationNotifier.h │ │ ├── DVTWindowActivationStateObserver-Protocol.h │ │ ├── InvisibleScroller.h │ │ ├── KeyLoopSplicingContainerView.h │ │ ├── MutableDraggingInfo.h │ │ ├── NSATSTypesetter-DVTARCAdditions.h │ │ ├── NSAffineTransform-DVTNSAffineTransformAdditions.h │ │ ├── NSAlert-DVTNSAlertAdditions.h │ │ ├── NSAnimationContext-DVTNSAnimationContextAdditions.h │ │ ├── NSAnimationDelegate-Protocol.h │ │ ├── NSArray-DVTDevicesWindowAdditions.h │ │ ├── NSAttributedString-DVTNSAttributedStringAdditions.h │ │ ├── NSAttributedString-FindPatternAdditions.h │ │ ├── NSBezierPath-DVTComparisonBezierPathAdditions.h │ │ ├── NSBezierPath-DVTNSBezierPathAdditions.h │ │ ├── NSBundle-DVTKitBundleAdditions.h │ │ ├── NSButton-DVTToolbarViewControllerAdditions.h │ │ ├── NSCarbonMenuImpl-DVTSwizzle.h │ │ ├── NSClipView-DVTNSClipViewAdditions.h │ │ ├── NSCoding-Protocol.h │ │ ├── NSColor-DVTNSColorAdditions.h │ │ ├── NSColorList-DVTNSColorListAdditions.h │ │ ├── NSColorSpace-DVTARCAdditions.h │ │ ├── NSControl-DVTNSControlAdditions.h │ │ ├── NSControlTextEditingDelegate-Protocol.h │ │ ├── NSCopying-Protocol.h │ │ ├── NSCursor-DVTSourceTextViewExtras.h │ │ ├── NSData-PlistDataExtensions.h │ │ ├── NSDate-PlistDateExtensions.h │ │ ├── NSDocument-DVTNSDocumentAdditions.h │ │ ├── NSDraggingDestination-Protocol.h │ │ ├── NSDraggingInfo-Protocol.h │ │ ├── NSDraggingSource-Protocol.h │ │ ├── NSError-DVTNSErrorAppKitAdditions.h │ │ ├── NSEvent-DVTNSEventAdditions.h │ │ ├── NSEvent-DVTNSEventExtras.h │ │ ├── NSEvent-DVTRolloverTrackingButtonAdditions.h │ │ ├── NSFont-DVTARCAdditions.h │ │ ├── NSFont-DVTPrivate.h │ │ ├── NSFontDescriptor-DVTNSFontDescriptorAdditions.h │ │ ├── NSFontManager-DVTARCAdditions.h │ │ ├── NSFontPanel-DVTARCAdditions.h │ │ ├── NSGraphicsContext-DVTNSGraphicsContextAdditions.h │ │ ├── NSImage-DVTNSImageAdditions.h │ │ ├── NSImage-DVTNSImageExtras.h │ │ ├── NSImage-DVTThemeAdditions.h │ │ ├── NSLayoutConstraint-SafariNSLayoutConstraintExtras.h │ │ ├── NSLayoutManagerDelegate-Protocol.h │ │ ├── NSMenu-DVTNSMenuAdditions.h │ │ ├── NSMenu-DVTNSMenuExtras.h │ │ ├── NSMenuDelegate-Protocol.h │ │ ├── NSMenuItem-DVTNSMenuItemAdditions.h │ │ ├── NSMutableArray-DVTNSArrayExtras.h │ │ ├── NSMutableAttributedString-DVTNSAttributedStringAdditions.h │ │ ├── NSMutableAttributedString-FindPatternAdditions.h │ │ ├── NSNib-DVTNSNibAdditions.h │ │ ├── NSNumber-PListEditor.h │ │ ├── NSObject-DVTAssertionModelObjectAdditions.h │ │ ├── NSObject-DVTBindingHelperAccess.h │ │ ├── NSObject-DVTBindingUtilities.h │ │ ├── NSObject-Protocol.h │ │ ├── NSOpenSavePanelDelegate-Protocol.h │ │ ├── NSOutlineView-DVTAdditions.h │ │ ├── NSOutlineView-DragAndDropEnhancements.h │ │ ├── NSOutlineViewDataSource-Protocol.h │ │ ├── NSOutlineViewDelegate-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSParagraphStyle-DVTARCAdditions.h │ │ ├── NSParagraphStyle-DVTNSParagraphStyleAdditions.h │ │ ├── NSPasteboard-SafariInXcodeBookmarkExtras.h │ │ ├── NSPopUpButton-DVTToolbarViewControllerAdditions.h │ │ ├── NSPopoverDelegate-Protocol.h │ │ ├── NSResponder-DVTNSResponderAdditions.h │ │ ├── NSScreen-DVTNSScreenAdditions.h │ │ ├── NSScreen-DVTNSScreenExtras.h │ │ ├── NSScrollView-LayoutOrder.h │ │ ├── NSScrollerImpPairDelegate-Protocol.h │ │ ├── NSSecureCoding-Protocol.h │ │ ├── NSSegmentedControl-DVTNSSegmentedControlAdditions.h │ │ ├── NSSplitView-DVTNSSplitViewAdditions.h │ │ ├── NSSplitViewDelegate-Protocol.h │ │ ├── NSString-DVTFileIconAdditions.h │ │ ├── NSString-DVTNSStringExtras.h │ │ ├── NSString-DVTPlistComment.h │ │ ├── NSString-DVTPlistEditingAdditions.h │ │ ├── NSString-DVTSizeAdditions.h │ │ ├── NSString-PlistNumberExtensions.h │ │ ├── NSString-plistAdditions.h │ │ ├── NSTabViewDelegate-Protocol.h │ │ ├── NSTableView-DVTNSTableViewAdditions.h │ │ ├── NSTableView-DragAndDropEnhancements.h │ │ ├── NSTableViewDataSource-Protocol.h │ │ ├── NSTableViewDelegate-Protocol.h │ │ ├── NSTextDelegate-Protocol.h │ │ ├── NSTextFieldCell-DVTNSTextFieldCellAdditions.h │ │ ├── NSTextFieldDelegate-Protocol.h │ │ ├── NSTextStorageDelegate-Protocol.h │ │ ├── NSTextTab-DVTARCAdditions.h │ │ ├── NSTextView-DVTARCAdditions.h │ │ ├── NSTextView-DVTNSTextViewAdditions.h │ │ ├── NSTextViewDelegate-Protocol.h │ │ ├── NSTreeController-DVTNSTreeControllerAdditions.h │ │ ├── NSTreeNode-DVTNSTreeControllerAdditions.h │ │ ├── NSTreeNode-DVTTreeNodeUtilities.h │ │ ├── NSUndoManager-DVTNSUndoManagerAdditions.h │ │ ├── NSUndoReplaceCharacters-DVTUndoReplaceCharacters.h │ │ ├── NSUndoTextOperation-DVTUndoTextOperation.h │ │ ├── NSUndoTyping-DVTUndoTyping.h │ │ ├── NSUserDefaults-DVTNSUserDefaultsAdditions.h │ │ ├── NSUserInterfaceValidations-Protocol.h │ │ ├── NSValue-DVTAdditions.h │ │ ├── NSView-DVTNSViewAdditions.h │ │ ├── NSView-DVTNSViewExtras.h │ │ ├── NSView-DVTSlidingExtras.h │ │ ├── NSView-LayoutOrder.h │ │ ├── NSViewController-DVTNSViewControllerAdditions.h │ │ ├── NSWindow-DVTHacks.h │ │ ├── NSWindow-DVTMainViewControllerMonitorAdditions.h │ │ ├── NSWindow-DVTMorphingDragImageControllerExtras.h │ │ ├── NSWindow-DVTNSWindowAdditions.h │ │ ├── NSWindow-DVTNSWindowExtras.h │ │ ├── NSWindowController-DVTNSWindowControllerAdditions.h │ │ ├── NSWindowDelegate-Protocol.h │ │ ├── NSXMLParserDelegate-Protocol.h │ │ ├── QLPreviewItem-Protocol.h │ │ ├── QLPreviewViewDelegate-Protocol.h │ │ ├── ScrollableTabBarMaskingContainerView.h │ │ ├── ViewActionForwardingLayerDelegate.h │ │ ├── _DVTActionPullDownButton.h │ │ ├── _DVTDefaultSourceLanguageServiceFormatOptions.h │ │ ├── _DVTDragWindowAnimation.h │ │ ├── _DVTFileMergeDiffVitalStats.h │ │ ├── _DVTInfoPlistValueCellToken.h │ │ ├── _DVTKitPrivateClassForFindingBundle.h │ │ ├── _DVTLibraryDetailControllerChoice.h │ │ ├── _DVTLozengeTextFieldCell.h │ │ ├── _DVTMainViewControllerMonitor.h │ │ ├── _DVTMarkerList.h │ │ ├── _DVTMarkerMenuItem.h │ │ ├── _DVTPlistStatusItemProxy.h │ │ ├── _DVTScrollViewSeparatorView.h │ │ ├── _DVTSegmentedCell.h │ │ ├── _DVTSlidingView.h │ │ ├── _DVTTileViewRubberband.h │ │ ├── _DVTUndoTypingCoalescedEdit.h │ │ ├── _LazyInvalidationHelper.h │ │ ├── __ARCLiteIndexedSubscripting__-Protocol.h │ │ ├── __ARCLiteKeyedSubscripting__-Protocol.h │ │ └── __DVTThemeNSImageAdditionsClass.h │ │ ├── IDEFoundation │ │ ├── CDStructures.h │ │ ├── DTXAllowedRPC-Protocol.h │ │ ├── DVTAbstractMacDevice-IDEFoundationAdditions.h │ │ ├── DVTCancellable-Protocol.h │ │ ├── DVTCertificateRecord-IDEDVTCertificateRecord.h │ │ ├── DVTCustomDataStoring-Protocol.h │ │ ├── DVTDevice-IDEFoundationAdditions.h │ │ ├── DVTDirectoryBasedCustomDataStoreDelegate-Protocol.h │ │ ├── DVTDocumentLocation-IDEActivityLogMessageAdditions.h │ │ ├── DVTDocumentLocation-IDEFoundationAdditions.h │ │ ├── DVTEncodableIndexDelegate-Protocol.h │ │ ├── DVTExtension-DVTExtensionSortAdditions.h │ │ ├── DVTExtension-DVTExtensionTypeIdentificationUtilities.h │ │ ├── DVTFilePath-IDEAssetTagScannerAdditions.h │ │ ├── DVTFilePath-IDESourceControlDVTFilePathAdditions.h │ │ ├── DVTFilePath-IDESourceControlPatchAdditions.h │ │ ├── DVTFilePath-IDESourceControlStatus.h │ │ ├── DVTFilePath-IDESourceControlStatus_Private.h │ │ ├── DVTFilePath-IDESourceControlUtilities.h │ │ ├── DVTFilePath-PersistenceFSEventsMonitoring.h │ │ ├── DVTInvalidation-Protocol.h │ │ ├── DVTLocalComputer-IDEFoundationAdditions.h │ │ ├── DVTPlatform-IDEExtendedPlatformInfo.h │ │ ├── DVTProgressReporting-Protocol.h │ │ ├── DVTProvisioningProfileRecord-IDEProvisioningProfileConformance.h │ │ ├── DVTProvisioningProfileRecordWrapper.h │ │ ├── DVTReferenceResolverClient-Protocol.h │ │ ├── DVTSigningCertificate-IDEDVTSigningCertificate.h │ │ ├── DVTSimpleSerialization-Protocol.h │ │ ├── DVTSourceControlAccountManager-Protocol.h │ │ ├── DVTSourceControlManager-IDESourceControlManager.h │ │ ├── DVTSourceControlRevision-IDEFoundationClassAdditions.h │ │ ├── DVTSourceControlSystem-IDESourceControlSystem.h │ │ ├── DVTSourceControlWorkingCopy-IDEFoundationClassAdditions.h │ │ ├── DVTSourceControlWorkspace-IDEFoundationClassAdditions.h │ │ ├── DVTSourceControlWorkspaceBlueprint-IDEFoundationClassAdditions.h │ │ ├── DVTSysmonBridgeDelegate-Protocol.h │ │ ├── DVTTask-IDEDistributionProcessingPipelineTasks.h │ │ ├── DVTTeamRecord-IDEDVTTeamRecordFacade.h │ │ ├── DVTTextDocumentLocation-IDEActivityLogMessageAdditions.h │ │ ├── DVTTextFindable-Protocol.h │ │ ├── DVTToolsInfo-IDEDVTToolsInfoAdditions.h │ │ ├── DVTXMLUnarchiverDelegate-Protocol.h │ │ ├── DVTXMLUnarchiving-Protocol.h │ │ ├── IDEAbstractProductType.h │ │ ├── IDEActivityLogActionMessage.h │ │ ├── IDEActivityLogAddSubmessageChangeEvent.h │ │ ├── IDEActivityLogAddSubsectionChangeEvent.h │ │ ├── IDEActivityLogAnalyzerControlFlowStepEdge.h │ │ ├── IDEActivityLogAnalyzerControlFlowStepMessage.h │ │ ├── IDEActivityLogAnalyzerEventStepMessage.h │ │ ├── IDEActivityLogAnalyzerResultMessage.h │ │ ├── IDEActivityLogAnalyzerStepMessage.h │ │ ├── IDEActivityLogAnalyzerWarningMessage.h │ │ ├── IDEActivityLogAppendTextChangeEvent.h │ │ ├── IDEActivityLogChangeEvent.h │ │ ├── IDEActivityLogContextInfoMessage.h │ │ ├── IDEActivityLogHeaderInclusionMessage.h │ │ ├── IDEActivityLogMessage.h │ │ ├── IDEActivityLogRecord.h │ │ ├── IDEActivityLogSection.h │ │ ├── IDEActivityLogSectionObservation.h │ │ ├── IDEActivityLogSectionRecorder.h │ │ ├── IDEActivityLogSetKeyValueChangeEvent.h │ │ ├── IDEActivityLogStopRecordingChangeEvent.h │ │ ├── IDEActivityLogUnitTestSection.h │ │ ├── IDEActivityLogUnitTestSectionRecorder.h │ │ ├── IDEAdditionalLaunchSchemeActionOptionsHandler.h │ │ ├── IDEAddressBreakpoint.h │ │ ├── IDEAlert.h │ │ ├── IDEAlertEvent.h │ │ ├── IDEAnalysisTool.h │ │ ├── IDEAnalyzeCommandLineVerb.h │ │ ├── IDEAnalyzeSchemeAction.h │ │ ├── IDEAppClientTracker.h │ │ ├── IDEAppExtensionConfiguration.h │ │ ├── IDEAppStoreSubmissionConfiguration.h │ │ ├── IDEAppSubmissionPreference.h │ │ ├── IDEAppleScriptBreakpointAction.h │ │ ├── IDEArchive.h │ │ ├── IDEArchiveCommandLineVerb.h │ │ ├── IDEArchiveIdentityFilter.h │ │ ├── IDEArchiveManager.h │ │ ├── IDEArchivePackager.h │ │ ├── IDEArchivePackagerEntitlementsMerger.h │ │ ├── IDEArchivePathsSnapshot.h │ │ ├── IDEArchiveProcessingOperation.h │ │ ├── IDEArchiveSchemeAction.h │ │ ├── IDEArchivedApplication.h │ │ ├── IDEArchivedContent.h │ │ ├── IDEArchivedInAppContent.h │ │ ├── IDEArchivingOperation.h │ │ ├── IDEArchivingOperationGroup.h │ │ ├── IDEAutoImportable-Protocol.h │ │ ├── IDEBatchFindHistoryItem.h │ │ ├── IDEBatchFindManager.h │ │ ├── IDEBlueprint-Protocol.h │ │ ├── IDEBlueprintProvider-Protocol.h │ │ ├── IDEBreakpoint.h │ │ ├── IDEBreakpointAction.h │ │ ├── IDEBreakpointActionArchivingProxy.h │ │ ├── IDEBreakpointActionEvaluationContext.h │ │ ├── IDEBreakpointArchivingProxy.h │ │ ├── IDEBreakpointBucket.h │ │ ├── IDEBreakpointLocation.h │ │ ├── IDEBreakpointManager.h │ │ ├── IDEBreakpointWrapper.h │ │ ├── IDEBuildActionEntry.h │ │ ├── IDEBuildArbitrator.h │ │ ├── IDEBuildCommandLineVerb.h │ │ ├── IDEBuildFolder.h │ │ ├── IDEBuildFolderSettings.h │ │ ├── IDEBuildIssueChange.h │ │ ├── IDEBuildIssueProvider.h │ │ ├── IDEBuildLogProvider.h │ │ ├── IDEBuildOperation.h │ │ ├── IDEBuildOperationDescription.h │ │ ├── IDEBuildOperationGroup.h │ │ ├── IDEBuildOperationQueueSet.h │ │ ├── IDEBuildOperationStatus.h │ │ ├── IDEBuildParameters.h │ │ ├── IDEBuildPlan.h │ │ ├── IDEBuildSchemeAction.h │ │ ├── IDEBuildSettingTable.h │ │ ├── IDEBuildStatisticsData-Protocol.h │ │ ├── IDEBuildStatisticsData.h │ │ ├── IDEBuildStatisticsSection.h │ │ ├── IDEBuildTask.h │ │ ├── IDEBuildTaskCallbacks-Protocol.h │ │ ├── IDEBuildable-Protocol.h │ │ ├── IDEBuildableProduct-Protocol.h │ │ ├── IDEBuildableProductRunnable.h │ │ ├── IDEBuildableProductSupportMixIn.h │ │ ├── IDEBuildableSnapshot.h │ │ ├── IDEBuilder.h │ │ ├── IDEBuilderCallbacks-Protocol.h │ │ ├── IDEBuilderGeneratedFileInfo.h │ │ ├── IDEBuilderHarvestedInfo.h │ │ ├── IDECertificateUtilitiesUIInitializer.h │ │ ├── IDEClangDiagnosticActivityLogMessage.h │ │ ├── IDECleanCommandLineVerb.h │ │ ├── IDEClientTracking-Protocol.h │ │ ├── IDEClientTrackingToken-Protocol.h │ │ ├── IDECodeModule.h │ │ ├── IDECommandLineArgumentEntry.h │ │ ├── IDECommandLineBuildLog.h │ │ ├── IDECommandLineBuildLogRecorder.h │ │ ├── IDECommandLineBuildTask.h │ │ ├── IDECommandLineEnvironment.h │ │ ├── IDECommandLineVerb.h │ │ ├── IDECompilationBuildTask.h │ │ ├── IDECompressedStackFrame.h │ │ ├── IDEConcreteClientTracker.h │ │ ├── IDEConcreteClientTrackingToken.h │ │ ├── IDEConcretePrimitiveSchemeCommand.h │ │ ├── IDEConcreteTestingSpecifier.h │ │ ├── IDEConnectionAddressXcodeServer.h │ │ ├── IDEConsoleAdaptor.h │ │ ├── IDEConsoleAdaptorDelegateProtocol-Protocol.h │ │ ├── IDEConsoleItem.h │ │ ├── IDEContainer.h │ │ ├── IDEContainerAbsolutePathReferenceResolutionStrategy.h │ │ ├── IDEContainerBuildProductsRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerContainerItselfReferenceResolutionStrategy.h │ │ ├── IDEContainerContainerRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerCore-Protocol.h │ │ ├── IDEContainerCore.h │ │ ├── IDEContainerCurrentSDKRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerDelegate-Protocol.h │ │ ├── IDEContainerDeveloperDirectoryRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerErrorPresenter-Protocol.h │ │ ├── IDEContainerGroupRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerItem.h │ │ ├── IDEContainerItemCore-Protocol.h │ │ ├── IDEContainerItemCore.h │ │ ├── IDEContainerItemWrapper.h │ │ ├── IDEContainerPathRelativeReferenceResolutionStrategy.h │ │ ├── IDEContainerQuery.h │ │ ├── IDEContainerReadOnlyItem.h │ │ ├── IDEContainerReadOnlyListeningItem.h │ │ ├── IDEContainerReferenceResolutionStrategy.h │ │ ├── IDEContainerReloadingDelegate-Protocol.h │ │ ├── IDEContainerUnlockingDelegate-Protocol.h │ │ ├── IDEContainerWrapper.h │ │ ├── IDECoverageReportGenerationOperation.h │ │ ├── IDECrashLog.h │ │ ├── IDECrashPoint.h │ │ ├── IDECustomDataStoring-Protocol.h │ │ ├── IDECustomUpgradeTask.h │ │ ├── IDEDVTCertificateRecord.h │ │ ├── IDEDVTProvisioningProfile.h │ │ ├── IDEDataMatrix.h │ │ ├── IDEDataMatrixSIn64.h │ │ ├── IDEDataProvider.h │ │ ├── IDEDataProvider_Energy.h │ │ ├── IDEDataProvider_NetworkStatistics.h │ │ ├── IDEDataProvider_procinfo.h │ │ ├── IDEDebugNavigableModel-Protocol.h │ │ ├── IDEDebugProcess.h │ │ ├── IDEDebugSession.h │ │ ├── IDEDebugTopNavigableModel-Protocol.h │ │ ├── IDEDebuggerCommandBreakpointAction.h │ │ ├── IDEDebuggerExpression.h │ │ ├── IDEDebuggerSpecifier.h │ │ ├── IDEDebuggingAddition-Protocol.h │ │ ├── IDEDeferredInitialization-Protocol.h │ │ ├── IDEDeveloperPaths.h │ │ ├── IDEDeviceAppDataReference.h │ │ ├── IDEDeviceInstallLogProvider.h │ │ ├── IDEDeviceInstallWorkspaceMonitor.h │ │ ├── IDEDeviceThinningTraits.h │ │ ├── IDEDiagnosticActivityLogMessage.h │ │ ├── IDEDiagnosticFixItItem.h │ │ ├── IDEDiagnosticItemDelegate-Protocol.h │ │ ├── IDEDirectoryBasedCustomDataStore.h │ │ ├── IDEDisassemblyStorageSupport.h │ │ ├── IDEDistributionAppStoreConfigurationStep.h │ │ ├── IDEDistributionAppThinningManifestStep.h │ │ ├── IDEDistributionAppThinningStep.h │ │ ├── IDEDistributionAppleProvidedContent-Protocol.h │ │ ├── IDEDistributionAppleProvidedContentSwiftSupport.h │ │ ├── IDEDistributionApplicationExportStep.h │ │ ├── IDEDistributionArchiveExportStep.h │ │ ├── IDEDistributionAssetPackManifestIndexingStep.h │ │ ├── IDEDistributionBuiltProductsExportStep.h │ │ ├── IDEDistributionCodeSlimmingStep.h │ │ ├── IDEDistributionCodesignStep.h │ │ ├── IDEDistributionCompileBitcodeStep.h │ │ ├── IDEDistributionConsoleLogger.h │ │ ├── IDEDistributionContext.h │ │ ├── IDEDistributionCopyAppleProvidedContentStep.h │ │ ├── IDEDistributionCopyBCSymbolMapsStep.h │ │ ├── IDEDistributionCopyInAppPurchaseContentStep.h │ │ ├── IDEDistributionCopyItemStep.h │ │ ├── IDEDistributionCreateDestRootStep.h │ │ ├── IDEDistributionCreateIPAStep.h │ │ ├── IDEDistributionCreateManifestStep.h │ │ ├── IDEDistributionCreatePKGStep.h │ │ ├── IDEDistributionDriver.h │ │ ├── IDEDistributionDryRunPackagingStep.h │ │ ├── IDEDistributionEmbedProfileStep.h │ │ ├── IDEDistributionEntitlementsFilter-Protocol.h │ │ ├── IDEDistributionExportStep.h │ │ ├── IDEDistributionFileLogger.h │ │ ├── IDEDistributionIssue.h │ │ ├── IDEDistributionItem.h │ │ ├── IDEDistributionItemProcessingResults.h │ │ ├── IDEDistributionItemProcessingStep.h │ │ ├── IDEDistributionItemRemovalStep.h │ │ ├── IDEDistributionItemSigningInfo.h │ │ ├── IDEDistributionLogging.h │ │ ├── IDEDistributionManifest.h │ │ ├── IDEDistributionManifestStep.h │ │ ├── IDEDistributionMethod.h │ │ ├── IDEDistributionMethodAppStore.h │ │ ├── IDEDistributionMethodExport.h │ │ ├── IDEDistributionMethodExportArchive.h │ │ ├── IDEDistributionMethodInAppPurchaseContent.h │ │ ├── IDEDistributionMethodInAppPurchaseContentPackage.h │ │ ├── IDEDistributionMethodInAppPurchaseContentSubmit.h │ │ ├── IDEDistributionMethodInAppPurchaseContentValidate.h │ │ ├── IDEDistributionMethodManager.h │ │ ├── IDEDistributionMethodSaveBuiltProducts.h │ │ ├── IDEDistributionMethodStep.h │ │ ├── IDEDistributionODRStep.h │ │ ├── IDEDistributionOptionsStep.h │ │ ├── IDEDistributionPackageExportStep.h │ │ ├── IDEDistributionPackagingStep.h │ │ ├── IDEDistributionProcessingPackagingStep.h │ │ ├── IDEDistributionProcessingPipeline.h │ │ ├── IDEDistributionProcessingPipelineContext.h │ │ ├── IDEDistributionProcessingStep.h │ │ ├── IDEDistributionProvisioning.h │ │ ├── IDEDistributionProvisioningSnapshot.h │ │ ├── IDEDistributionSigningAssetsStep.h │ │ ├── IDEDistributionSkipPackagingStep.h │ │ ├── IDEDistributionStep.h │ │ ├── IDEDistributionStreamingZipItemStep.h │ │ ├── IDEDistributionSummaryStep.h │ │ ├── IDEDistributionSymbolsStep.h │ │ ├── IDEDistributionThinningStep.h │ │ ├── IDEDistributionThinningVariant.h │ │ ├── IDEDistributionThinningVariantDeviceFamily.h │ │ ├── IDEDistributionThinningVariantUniversal.h │ │ ├── IDEDistributioniTunesConnectAccountStep.h │ │ ├── IDEDocumentIssueSummary.h │ │ ├── IDEEnergyAddition.h │ │ ├── IDEEnergyLogScoreFormatter.h │ │ ├── IDEEnhancedProvisioningProfile-Protocol.h │ │ ├── IDEEnhancedProvisioningSigningIdentity-Protocol.h │ │ ├── IDEEnhancedProvisioningSigningIdentity.h │ │ ├── IDEEntitlementsDictionary.h │ │ ├── IDEEntitlementsProcessor.h │ │ ├── IDEEntitlementsWhiteOutMarker.h │ │ ├── IDEEntityIdentifier.h │ │ ├── IDEEnvironmentVariableEntry.h │ │ ├── IDEExceptionBreakpoint.h │ │ ├── IDEExecutingOperationTrackable-Protocol.h │ │ ├── IDEExecutionAction.h │ │ ├── IDEExecutionActionArchivingProxy.h │ │ ├── IDEExecutionActionOperation.h │ │ ├── IDEExecutionActionType.h │ │ ├── IDEExecutionEnvironment.h │ │ ├── IDEExecutionOperationTracker.h │ │ ├── IDEExecutionRunnableTracker.h │ │ ├── IDEExecutionTracker.h │ │ ├── IDEExecutionTrackerReporting-Protocol.h │ │ ├── IDEExtendedPlatformInfo.h │ │ ├── IDEFileBreakpoint.h │ │ ├── IDEFileBreakpointWrapper.h │ │ ├── IDEFileBuildOperation.h │ │ ├── IDEFileReference.h │ │ ├── IDEFileReferenceContainerObserver.h │ │ ├── IDEFileReferenceContainerObserverCacheKey.h │ │ ├── IDEFileReferenceCore-Protocol.h │ │ ├── IDEFileReferenceCore.h │ │ ├── IDEFileReferenceWrapper.h │ │ ├── IDEFindCommandLineVerb.h │ │ ├── IDEFolder.h │ │ ├── IDEFolderCore-Protocol.h │ │ ├── IDEFolderCore.h │ │ ├── IDEFoundationTestInitializer.h │ │ ├── IDEFramework.h │ │ ├── IDEFrameworkCore-Protocol.h │ │ ├── IDEFrameworkCore.h │ │ ├── IDEGaugeDataProviderService.h │ │ ├── IDEGaugeDataQuery.h │ │ ├── IDEGaugeDataQueryCoordinator.h │ │ ├── IDEGaugeDocumentLocation.h │ │ ├── IDEGroup.h │ │ ├── IDEGroupCore-Protocol.h │ │ ├── IDEGroupCore.h │ │ ├── IDEGroupWrapper.h │ │ ├── IDEHelpCommandLineVerb.h │ │ ├── IDEIPAProcessor.h │ │ ├── IDEIPAProcessorDevice.h │ │ ├── IDEIPAProcessorDeviceFamily.h │ │ ├── IDEInMemoryActivityLogRecord.h │ │ ├── IDEInMemoryLogStore.h │ │ ├── IDEInMemoryLogStore_Impl.h │ │ ├── IDEIndex.h │ │ ├── IDEIndexAutoImportItem.h │ │ ├── IDEIndexAutoImportItemCollection.h │ │ ├── IDEIndexCallableSymbol.h │ │ ├── IDEIndexCategorySymbol.h │ │ ├── IDEIndexClangDataSource.h │ │ ├── IDEIndexClangQueryProvider.h │ │ ├── IDEIndexClangTranslationUnit.h │ │ ├── IDEIndexClassSymbol.h │ │ ├── IDEIndexCodeCompletionContext.h │ │ ├── IDEIndexCollection.h │ │ ├── IDEIndexCompletionArray.h │ │ ├── IDEIndexCompletionItem.h │ │ ├── IDEIndexContainerSymbol.h │ │ ├── IDEIndexDBConnection.h │ │ ├── IDEIndexDBFactory.h │ │ ├── IDEIndexDBSQLStream.h │ │ ├── IDEIndexDBStringStorage.h │ │ ├── IDEIndexDBTempTable.h │ │ ├── IDEIndexDBTransaction.h │ │ ├── IDEIndexDataSource.h │ │ ├── IDEIndexDatabase.h │ │ ├── IDEIndexDatabaseDelegate-Protocol.h │ │ ├── IDEIndexDatabaseQueryProvider.h │ │ ├── IDEIndexFileCollection.h │ │ ├── IDEIndexGenericQueryProvider.h │ │ ├── IDEIndexGenericSymbolFormatter.h │ │ ├── IDEIndexImportSession.h │ │ ├── IDEIndexImporter.h │ │ ├── IDEIndexModulesIndexable.h │ │ ├── IDEIndexNewFile.h │ │ ├── IDEIndexNewFileBase-Protocol.h │ │ ├── IDEIndexNewMainFile.h │ │ ├── IDEIndexNewSymbol.h │ │ ├── IDEIndexProductInfo.h │ │ ├── IDEIndexPropertySymbol.h │ │ ├── IDEIndexProtocolSymbol.h │ │ ├── IDEIndexQPManager.h │ │ ├── IDEIndexQualifiedNameParser.h │ │ ├── IDEIndexQueryProvider-Protocol.h │ │ ├── IDEIndexScannerDataSource.h │ │ ├── IDEIndexSymbol.h │ │ ├── IDEIndexSymbolCollection.h │ │ ├── IDEIndexSymbolFormatter-Protocol.h │ │ ├── IDEIndexSymbolFormatterFactory.h │ │ ├── IDEIndexSymbolOccurrence.h │ │ ├── IDEIndexSymbolOccurrenceCollection.h │ │ ├── IDEIndexSymbolOccurrenceWithSymbolCollection.h │ │ ├── IDEIndexSymbolWithDefiningOccurrenceCollection.h │ │ ├── IDEIndexSymbolWithModelOccurrenceCollection.h │ │ ├── IDEIndexSymbolWithOccurrenceCollection.h │ │ ├── IDEIndexTestMethodCollection.h │ │ ├── IDEIndexTestPlistDataSource.h │ │ ├── IDEIndexUniqueStringMap.h │ │ ├── IDEIndexUnknownDataSource.h │ │ ├── IDEIndexable-Protocol.h │ │ ├── IDEIndexableMainThreadProxy.h │ │ ├── IDEIndexableProvider-Protocol.h │ │ ├── IDEIndexingEngine.h │ │ ├── IDEIndexingJob.h │ │ ├── IDEIndexingJobScheduler.h │ │ ├── IDEIndexingPrebuildController.h │ │ ├── IDEInitialization-Protocol.h │ │ ├── IDEInitializationErrorRecoveryAttempter.h │ │ ├── IDEInstallCommandLineVerb.h │ │ ├── IDEInstallLocalMacService.h │ │ ├── IDEInstallLocalMacWorker.h │ │ ├── IDEInstallSchemeAction.h │ │ ├── IDEIntegrateSchemeAction.h │ │ ├── IDEIntegrityLogDataSource-Protocol.h │ │ ├── IDEInternalBreakpointDelegate-Protocol.h │ │ ├── IDEIssue.h │ │ ├── IDEIssueFileGroup.h │ │ ├── IDEIssueGroup.h │ │ ├── IDEIssueLogRecordsGroup.h │ │ ├── IDEIssueManager.h │ │ ├── IDEIssueManager_ByFileObserverToken.h │ │ ├── IDEIssueProvider.h │ │ ├── IDEIssueProviderSession.h │ │ ├── IDEIssueTypeGroup.h │ │ ├── IDEItemReferenceWrapper.h │ │ ├── IDEKeyDrivenNavigableItemRepresentedObject-Protocol.h │ │ ├── IDELaunchParametersSnapshot.h │ │ ├── IDELaunchRunPhasePathEntry.h │ │ ├── IDELaunchSchemeAction.h │ │ ├── IDELaunchSession.h │ │ ├── IDELocalizationBundleExportContext.h │ │ ├── IDELocalizationExporter.h │ │ ├── IDELocalizationImporter.h │ │ ├── IDELocalizationImporterContext.h │ │ ├── IDELocalizationLanguageExportContext.h │ │ ├── IDELocalizationLanguageImportContext.h │ │ ├── IDELocalizationManager.h │ │ ├── IDELocalizationManagerContext.h │ │ ├── IDELocalizationRecordItem.h │ │ ├── IDELocalizationStream.h │ │ ├── IDELocalizationStreamConsumer-Protocol.h │ │ ├── IDELocalizationStreamPublisher-Protocol.h │ │ ├── IDELocalizationUtilities_parser.h │ │ ├── IDELocalizationWork.h │ │ ├── IDELocalizationWorkContext.h │ │ ├── IDELocalizationWorkProgress-Protocol.h │ │ ├── IDELocalizationWorkProvider-Protocol.h │ │ ├── IDELocalizationWorkReadStrings.h │ │ ├── IDELocalizationWorkSystemTask.h │ │ ├── IDELocalizationWorkWriteData.h │ │ ├── IDELocalizationWorkWriteStrings.h │ │ ├── IDELocalizationXLIFFComparisonContext.h │ │ ├── IDELocalizationXLIFFComparisonFile.h │ │ ├── IDELocalizationXLIFFComparisonIssue.h │ │ ├── IDELocalizedGroup-Protocol.h │ │ ├── IDELocalizedPlistAdaptor.h │ │ ├── IDELocalizedResourceAdaptor.h │ │ ├── IDELocalizedResourceAdaptorWorkContext.h │ │ ├── IDELocalizedResourcePopulationContext.h │ │ ├── IDELocalizedStringsAdaptor.h │ │ ├── IDELocation.h │ │ ├── IDELocationScenario.h │ │ ├── IDELocationScenarioReference.h │ │ ├── IDELocationSimulator.h │ │ ├── IDELogDocumentLocation.h │ │ ├── IDELogManager.h │ │ ├── IDELogProvider.h │ │ ├── IDELogStore.h │ │ ├── IDEMasterPtyFileHandle.h │ │ ├── IDEMutableBuildParameters.h │ │ ├── IDEMutableOverridingBuildProperties.h │ │ ├── IDENetServiceXcodeServer.h │ │ ├── IDENoNetworkConfigurationResponse.h │ │ ├── IDENotifyingLocalizedGroup.h │ │ ├── IDEOCUnitTestOutputParser.h │ │ ├── IDEOCUnitTestOutputParserDelegate-Protocol.h │ │ ├── IDEOCUnitTestRunner.h │ │ ├── IDEOnDiskActivityLogRecord.h │ │ ├── IDEOnDiskLogStore.h │ │ ├── IDEOnDiskLogStore_Impl.h │ │ ├── IDEOverridingBuildProperties.h │ │ ├── IDEPathRunnable.h │ │ ├── IDEPlayground.h │ │ ├── IDEPlaygroundAuxiliaryIssueProvider.h │ │ ├── IDEPlaygroundAuxiliarySourceCompilationManager.h │ │ ├── IDEPlaygroundAuxiliarySourceCompilerOperation.h │ │ ├── IDEPlaygroundAuxiliarySourceFrameworkLocation.h │ │ ├── IDEPlaygroundAuxiliarySourceFrameworkStructure.h │ │ ├── IDEPlaygroundAuxiliarySourceMonitor.h │ │ ├── IDEPlaygroundCommon.h │ │ ├── IDEPlaygroundCommonSharedContext.h │ │ ├── IDEPlaygroundContextDeserializer.h │ │ ├── IDEPlaygroundContextSerializer.h │ │ ├── IDEPlaygroundCore.h │ │ ├── IDEPlaygroundDefaults.h │ │ ├── IDEPlaygroundPage.h │ │ ├── IDEPlaygroundPageSharedContext.h │ │ ├── IDEPlaygroundPlatformSupport.h │ │ ├── IDEPlaygroundResourcesMonitor.h │ │ ├── IDEPlaygroundResourcesSymlinkManager.h │ │ ├── IDEPlaygroundSectionFileReference.h │ │ ├── IDEPlaygroundSharedContext.h │ │ ├── IDEPlaygroundUpgrader.h │ │ ├── IDEPlaygroundVersion.h │ │ ├── IDEPosixSpawnLaunchLocalService.h │ │ ├── IDEPosixSpawnLauncher.h │ │ ├── IDEPosixSpawnLocalService.h │ │ ├── IDEPrimitiveSchemeCommand-Protocol.h │ │ ├── IDEProductType.h │ │ ├── IDEProductTypeProvider-Protocol.h │ │ ├── IDEProfileOptimizationActionController.h │ │ ├── IDEProfileSchemeAction.h │ │ ├── IDEProvisioningDeveloperPortalDatabaseFacade.h │ │ ├── IDEProvisioningLocalIdentityState-Protocol.h │ │ ├── IDEProvisioningLocalProfileState-Protocol.h │ │ ├── IDEProvisioningOnlineProfileState-Protocol.h │ │ ├── IDEProvisioningProfile-Protocol.h │ │ ├── IDEProvisioningProfileManager.h │ │ ├── IDEProvisioningProfileSource.h │ │ ├── IDEProvisioningProfileSourceDelegate-Protocol.h │ │ ├── IDEProvisioningSigningIdentity-Protocol.h │ │ ├── IDEProvisioningSigningIdentityPrototype.h │ │ ├── IDEProvisioningSnapshot.h │ │ ├── IDEProvisioningSnapshotEnhancedProfile.h │ │ ├── IDEProvisioningTeam-Protocol.h │ │ ├── IDEProvisioningTeam.h │ │ ├── IDEPseudoTerminal.h │ │ ├── IDEQueuedOperationInfo.h │ │ ├── IDEReadOnlyItem-Protocol.h │ │ ├── IDEReadOnlyItemsManager.h │ │ ├── IDERefactoring.h │ │ ├── IDERefactoringBuildSettings.h │ │ ├── IDERefactoringKeyValueAccessorMethodDescriptor.h │ │ ├── IDERemoteRunnable.h │ │ ├── IDERenameableXcode3ProjectItem.h │ │ ├── IDEResultBundleCommandLineVerb.h │ │ ├── IDERunContextManager.h │ │ ├── IDERunDestination.h │ │ ├── IDERunDestinationFallbackSelector.h │ │ ├── IDERunDestinationFallbackSelectorDeviceInfo-Protocol.h │ │ ├── IDERunDestinationManager.h │ │ ├── IDERunDestinationSelectable.h │ │ ├── IDERunDeviceService.h │ │ ├── IDERunGeneratesOutputAlertEvent.h │ │ ├── IDERunOperation.h │ │ ├── IDERunOperationPathWorker.h │ │ ├── IDERunOperationWorker.h │ │ ├── IDERunOperationWorkerGroup.h │ │ ├── IDERunnable.h │ │ ├── IDESDKInfoCommandLineVerb.h │ │ ├── IDEScheme.h │ │ ├── IDESchemeAction.h │ │ ├── IDESchemeActionAbstractTestSummaryObject.h │ │ ├── IDESchemeActionCodeCoverage.h │ │ ├── IDESchemeActionCodeCoverageFile.h │ │ ├── IDESchemeActionCodeCoverageFunction.h │ │ ├── IDESchemeActionCodeCoverageTarget.h │ │ ├── IDESchemeActionDeviceRecord.h │ │ ├── IDESchemeActionDummyTestSummary.h │ │ ├── IDESchemeActionIssueSummary.h │ │ ├── IDESchemeActionPlatformRecord.h │ │ ├── IDESchemeActionRecord.h │ │ ├── IDESchemeActionResult.h │ │ ├── IDESchemeActionResultOperation.h │ │ ├── IDESchemeActionRunDestinationRecord.h │ │ ├── IDESchemeActionSDKRecord.h │ │ ├── IDESchemeActionTestActivitySummary.h │ │ ├── IDESchemeActionTestFailureIssueSummary.h │ │ ├── IDESchemeActionTestFailureSummary.h │ │ ├── IDESchemeActionTestPerformanceMetricSummary.h │ │ ├── IDESchemeActionTestSummary.h │ │ ├── IDESchemeActionTestSummaryContainer-Protocol.h │ │ ├── IDESchemeActionTestSummaryGroup.h │ │ ├── IDESchemeActionTestableSummary.h │ │ ├── IDESchemeActionsInvocationRecord.h │ │ ├── IDESchemeActionsInvocationRecordUpdateDelegate-Protocol.h │ │ ├── IDESchemeBasedCommandLineVerb.h │ │ ├── IDESchemeBuildableReference.h │ │ ├── IDESchemeCommand.h │ │ ├── IDESchemeOptionReference.h │ │ ├── IDESchemeOrderedWorkspaceNotificationManager.h │ │ ├── IDEScriptingElement.h │ │ ├── IDEScriptingProxy.h │ │ ├── IDEScriptingWrapper.h │ │ ├── IDESetReponsibleProcessForUITestingProtocol-Protocol.h │ │ ├── IDEShellCommandBreakpointAction.h │ │ ├── IDEShellXPCDebugSession.h │ │ ├── IDEShellXPCProcess.h │ │ ├── IDESimulateLocationService.h │ │ ├── IDESnapshotItem.h │ │ ├── IDESnapshotsEngine.h │ │ ├── IDESnapshotsManager.h │ │ ├── IDESourceControlArchiveWrapper.h │ │ ├── IDESourceControlBranch.h │ │ ├── IDESourceControlDocumentLocation.h │ │ ├── IDESourceControlDummyItem.h │ │ ├── IDESourceControlExtension.h │ │ ├── IDESourceControlGroupTreeNode.h │ │ ├── IDESourceControlIssueProvider.h │ │ ├── IDESourceControlLogProvider.h │ │ ├── IDESourceControlManager.h │ │ ├── IDESourceControlMultipleStepInvalidationToken.h │ │ ├── IDESourceControlOperation.h │ │ ├── IDESourceControlPatch.h │ │ ├── IDESourceControlPatchBuilder.h │ │ ├── IDESourceControlPatchItemNode.h │ │ ├── IDESourceControlPatchManager.h │ │ ├── IDESourceControlPatchNode-Protocol.h │ │ ├── IDESourceControlPatchWorkingTreeNode.h │ │ ├── IDESourceControlProject.h │ │ ├── IDESourceControlRepository.h │ │ ├── IDESourceControlRequest.h │ │ ├── IDESourceControlRevision.h │ │ ├── IDESourceControlRevisionWrapper.h │ │ ├── IDESourceControlTaskOperation.h │ │ ├── IDESourceControlTree.h │ │ ├── IDESourceControlTreeGroup.h │ │ ├── IDESourceControlTreeItem.h │ │ ├── IDESourceControlTreeNode.h │ │ ├── IDESourceControlWorkingCopyConfiguration.h │ │ ├── IDESourceControlWorkingTree.h │ │ ├── IDESourceControlWorkingTreeGroup.h │ │ ├── IDESourceControlWorkingTreeItem.h │ │ ├── IDESourceControlWorkingTreeItemHolder.h │ │ ├── IDESourceControlWorkspaceMonitor.h │ │ ├── IDESourceTreeProvider-Protocol.h │ │ ├── IDESourceTrees.h │ │ ├── IDEStackFrame.h │ │ ├── IDEStackFramesDefaultCompressionStrategy.h │ │ ├── IDEStandardTestable.h │ │ ├── IDEStructureEditing-Protocol.h │ │ ├── IDEStructureEditingHelper.h │ │ ├── IDESymbolicBreakpoint.h │ │ ├── IDESymbolicBreakpointWrapper.h │ │ ├── IDESyntheticLaunchSession.h │ │ ├── IDETemplate.h │ │ ├── IDETemplateCategory.h │ │ ├── IDETemplateCommandLineVerb.h │ │ ├── IDETemplateFactory.h │ │ ├── IDETemplateInstantiationContext.h │ │ ├── IDETemplateKind.h │ │ ├── IDETemplateMacroEngine.h │ │ ├── IDETemplateOption.h │ │ ├── IDETemplateOptionParent-Protocol.h │ │ ├── IDETemplateSection.h │ │ ├── IDETemplateTester.h │ │ ├── IDETemplateTextSubstitutionFactory.h │ │ ├── IDETemplateTextSubstitutionOperation.h │ │ ├── IDETest.h │ │ ├── IDETestBaselineRecord.h │ │ ├── IDETestBlueprintHostSettings.h │ │ ├── IDETestBundleBaselineRecord.h │ │ ├── IDETestBundleDeviceRecord.h │ │ ├── IDETestBundleRunDestinationRecord.h │ │ ├── IDETestContainer-Protocol.h │ │ ├── IDETestFailureBreakpoint.h │ │ ├── IDETestIssue.h │ │ ├── IDETestLogProvider.h │ │ ├── IDETestManager.h │ │ ├── IDETestObserver-Protocol.h │ │ ├── IDETestOperationsObserver.h │ │ ├── IDETestPerformanceMetricBaselineRecord.h │ │ ├── IDETestProgressNotificationsObserver.h │ │ ├── IDETestReportDocumentLocation.h │ │ ├── IDETestResult.h │ │ ├── IDETestResultMessage.h │ │ ├── IDETestRunSession.h │ │ ├── IDETestRunner.h │ │ ├── IDETestSchemeAction.h │ │ ├── IDETestSchemeBaselineRecord.h │ │ ├── IDETestable-Protocol.h │ │ ├── IDETestableIssueProvider.h │ │ ├── IDETestableProvider-Protocol.h │ │ ├── IDETestableReference.h │ │ ├── IDETestableReferenceTestIdentifier.h │ │ ├── IDETestablesObserver-Protocol.h │ │ ├── IDETestingSpecification.h │ │ ├── IDETestingSpecifier-Protocol.h │ │ ├── IDETestingSystem.h │ │ ├── IDETestsActivityLogBuilder.h │ │ ├── IDETestsInTestableObserver-Protocol.h │ │ ├── IDETestsObserver-Protocol.h │ │ ├── IDETestsSummariesBuilder.h │ │ ├── IDETextIndex.h │ │ ├── IDETextIndexDataProvider.h │ │ ├── IDETextIndexPropertyListDataProvider.h │ │ ├── IDETextIndexRTFDataProvider.h │ │ ├── IDETextIndexTextDataProvider.h │ │ ├── IDETextIndexTextFindableWrapper.h │ │ ├── IDETextSubstitutionTemplateInstantiationContext.h │ │ ├── IDEThread.h │ │ ├── IDETypeIdentifier.h │ │ ├── IDEUIATestHostTask.h │ │ ├── IDEUIATestRunner.h │ │ ├── IDEUIATestScriptAgentCommunicator.h │ │ ├── IDEUITestingPermissionManager.h │ │ ├── IDEUnitTestContainerUnlockingDelegate.h │ │ ├── IDEUpgradeBlueprintContext.h │ │ ├── IDEUpgradeContainerContext.h │ │ ├── IDEUpgradeContext.h │ │ ├── IDEUpgradeSchemeContext.h │ │ ├── IDEUpgradeTask.h │ │ ├── IDEUpgradeableItem-Protocol.h │ │ ├── IDEVersionCommandLineVerb.h │ │ ├── IDEVersionedFileManager.h │ │ ├── IDEWatchpoint.h │ │ ├── IDEWatchpointNotificationInfo.h │ │ ├── IDEWorkspace.h │ │ ├── IDEWorkspaceArena.h │ │ ├── IDEWorkspaceArenaInfo.h │ │ ├── IDEWorkspaceArenaSnapshot.h │ │ ├── IDEWorkspaceBasedCommandLineVerb.h │ │ ├── IDEWorkspaceCore.h │ │ ├── IDEWorkspaceDelegate-Protocol.h │ │ ├── IDEWorkspaceInfoCommandLineVerb.h │ │ ├── IDEWorkspaceIntegrityIssueProvider.h │ │ ├── IDEWorkspaceIntegrityIssueProviderContext.h │ │ ├── IDEWorkspaceSettings.h │ │ ├── IDEWorkspaceSharedSettings.h │ │ ├── IDEWorkspaceUpgradeTasksController.h │ │ ├── IDEWorkspaceUserSettings.h │ │ ├── IDEWorkspaceWrapping.h │ │ ├── IDEWorkspaceWrappingContainer-Protocol.h │ │ ├── IDEXMLPackageContainer.h │ │ ├── IDEXMLPackageContainerCore-Protocol.h │ │ ├── IDEXMLPackageContainerCore.h │ │ ├── IDEXcodeServer.h │ │ ├── IDEXcodeServerManager.h │ │ ├── IDEXcodeServerUseConfiguration.h │ │ ├── IDEdSYMDownloader.h │ │ ├── IDEiCloudEntitlementsProcessor.h │ │ ├── IDEiTunesDistributionErrorContext.h │ │ ├── ITunesSoftwareServiceConfigurationResponse-Protocol.h │ │ ├── ITunesSoftwareServiceResponse-Protocol.h │ │ ├── NSArray-IDELocalizationStreamArrayUtilities.h │ │ ├── NSCoding-Protocol.h │ │ ├── NSCopying-Protocol.h │ │ ├── NSError-DVTDeviceIneligibility.h │ │ ├── NSFastEnumeration-Protocol.h │ │ ├── NSFileManager-IDESourceControlUtilities.h │ │ ├── NSLocale-IDELocDisplayName.h │ │ ├── NSLocale-IDELoc_IPPrivateMethods.h │ │ ├── NSMutableCopying-Protocol.h │ │ ├── NSNumber-IDESourceControlAdditions.h │ │ ├── NSObject-IDEModelObjectTypeIdentification.h │ │ ├── NSObject-Protocol.h │ │ ├── NSSecureCoding-Protocol.h │ │ ├── NSString-IDEIndexAdditions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── ProjectItemWrapper.h │ │ ├── UIAInstrumentAuthorizedAPI-Protocol.h │ │ ├── XCTestDriverInterface-Protocol.h │ │ ├── XCTestManager_DaemonConnectionInterface-Protocol.h │ │ ├── XCTestManager_IDEInterface-Protocol.h │ │ ├── _IDEDeferredInitializationInvocation.h │ │ ├── _IDEFolderRootGroup.h │ │ ├── _IDEFoundationPrivateClassForFindingBundle.h │ │ ├── _IDEFrameworkRootGroup.h │ │ ├── _IDEIssueProvisionInfo.h │ │ ├── _IDELegacyUserDefaultsImporter.h │ │ ├── _IDELocalizationAddFileReferenceContext.h │ │ ├── _IDELocalizationStreamBlockBased.h │ │ ├── _IDELocalizationStreamConcat.h │ │ ├── _IDELocalizationStreamJoin.h │ │ ├── _IDELocalizationStreamMap.h │ │ ├── _IDELocalizationStreamReturn.h │ │ ├── _IDELocalizationStreamThrow.h │ │ ├── _IDELocalizationXLIFFComparisonIssueLocation.h │ │ ├── _IDELocalizationXLIFFTextualRepresentation.h │ │ ├── _IDELocalizedPlistAdaptorReadContext.h │ │ ├── _IDELocalizedStringsAdaptorReadContext.h │ │ ├── _IDEPlaygroundCommonFixedSubFolderFileReference.h │ │ ├── _IDEPlaygroundCommonRootGroup.h │ │ ├── _IDEPlaygroundMonitorPair.h │ │ ├── _IDEPlaygroundPageFileReference.h │ │ ├── _IDEPlaygroundRootGroup.h │ │ ├── _IDETestFileChangeBroker.h │ │ ├── _IDETestManagerAPIMediator.h │ │ ├── _IDETestResultsProcessor.h │ │ ├── _IDETestRunPerTestableSessionState.h │ │ ├── _IDETestableState.h │ │ ├── _IDEUnitTestParserMediator.h │ │ ├── _IDEUnitTestParserValidator.h │ │ ├── _IDEXCTestSuiteRecord.h │ │ ├── __ARCLiteIndexedSubscripting__-Protocol.h │ │ └── __ARCLiteKeyedSubscripting__-Protocol.h │ │ ├── IDEKit │ │ ├── AuthorImageCell.h │ │ ├── CALayer-IDESpinnerLayerAdditions.h │ │ ├── CDStructures.h │ │ ├── DTGraphDelegate-Protocol.h │ │ ├── DVTAdditionalTextCompletion-Protocol.h │ │ ├── DVTAssertionHandling-Protocol.h │ │ ├── DVTCancellable-Protocol.h │ │ ├── DVTClickableLayer-Protocol.h │ │ ├── DVTCodesignableDevice-Protocol.h │ │ ├── DVTCompletingTextViewDelegate-Protocol.h │ │ ├── DVTDeveloperAccount-IDEAccountPrefsAdditions.h │ │ ├── DVTDevice-IDEDeviceActivityReporterAdditions.h │ │ ├── DVTDeviceApplicationItem-Protocol.h │ │ ├── DVTDeviceApplicationItem_KitSupport-Protocol.h │ │ ├── DVTDeviceApplicationProvider-Protocol.h │ │ ├── DVTDiffTextFilter-Protocol.h │ │ ├── DVTDisclosureView-IDEViewControllerAutomaticInvalidation.h │ │ ├── DVTDistributionMethodStepTextField.h │ │ ├── DVTDocumentLocation-DVTDocumentLocation_ModelObjectTypeIdentifierAdditions.h │ │ ├── DVTDocumentLocation-DVTDocumentLocation_NavigableItemPropertyAdditions.h │ │ ├── DVTDocumentLocation-IDESourceControlDocumentLocationAdditions.h │ │ ├── DVTDocumentLocation-IDESourceControlDocumentLocationAdditionsInternals.h │ │ ├── DVTDownloadableInstallationHelper-Protocol.h │ │ ├── DVTDynamicTableViewDataSource-Protocol.h │ │ ├── DVTDynamicTableViewDelegate-Protocol.h │ │ ├── DVTEditor-Protocol.h │ │ ├── DVTExtension-_IDEActionTypeExtensionDisplay.h │ │ ├── DVTFilePath-DVTFilePathPropertyAdditions.h │ │ ├── DVTFilePathFieldCellDelegate-Protocol.h │ │ ├── DVTFilteringMenuDelegate-Protocol.h │ │ ├── DVTFindBarFindable-Protocol.h │ │ ├── DVTFindBarHostable-Protocol.h │ │ ├── DVTFindPatternManager-Protocol.h │ │ ├── DVTFirstResponderShowingView-Protocol.h │ │ ├── DVTFontTextFieldCellDelegate-Protocol.h │ │ ├── DVTInvalidation-Protocol.h │ │ ├── DVTIssueDisplayingView-Protocol.h │ │ ├── DVTLanguageSpecification-IBDVTFoundationAdditions.h │ │ ├── DVTLinkViewDelegate-Protocol.h │ │ ├── DVTMenuBuilder-Protocol.h │ │ ├── DVTMessageBubbleAnnotationDelegate-Protocol.h │ │ ├── DVTModelObject-Protocol.h │ │ ├── DVTOutlineViewDelegate-Protocol.h │ │ ├── DVTPackageInstallerHelperDelegate-Protocol.h │ │ ├── DVTPagingSheetViewController-Protocol.h │ │ ├── DVTPreferenceSet-Protocol.h │ │ ├── DVTProgressReporting-Protocol.h │ │ ├── DVTProjectWorkingCopyTableCellView.h │ │ ├── DVTReplacementViewDelegate-Protocol.h │ │ ├── DVTScopeBarContentController-Protocol.h │ │ ├── DVTScopeBarHost-Protocol.h │ │ ├── DVTSourceCodeComparisonAnnotationContext-Protocol.h │ │ ├── DVTSourceControlAccount-IDEAccountPrefsPaneAccount.h │ │ ├── DVTSourceControlAuthenticationFailureHandler-Protocol.h │ │ ├── DVTSourceControlAuthor-IDEKitAdditions.h │ │ ├── DVTSourceExpressionSource-Protocol.h │ │ ├── DVTSourceLandmarkItem-IDEKitSourceLandmarkItemPropertyAdditions.h │ │ ├── DVTSourceLandmarkProvider-Protocol.h │ │ ├── DVTSourceLanguageService-IDESourceEditorAdditions.h │ │ ├── DVTSourceModelItem-IBDVTFoundationAdditions.h │ │ ├── DVTSourceTextViewDelegate-Protocol.h │ │ ├── DVTSpecificApplicationProvider-Protocol.h │ │ ├── DVTSplitViewDelegate-Protocol.h │ │ ├── DVTStateRepositoryDelegate-Protocol.h │ │ ├── DVTStatefulObject-Protocol.h │ │ ├── DVTTabChooserViewDelegate-Protocol.h │ │ ├── DVTTabbedWindowControlling-Protocol.h │ │ ├── DVTTabbedWindowCreation-Protocol.h │ │ ├── DVTTabbedWindowTabContentControlling-Protocol.h │ │ ├── DVTTableCellViewTitleEditingDelegate-Protocol.h │ │ ├── DVTTableRowViewMouseInsideDelegate-Protocol.h │ │ ├── DVTTableViewDelegate-Protocol.h │ │ ├── DVTTextAnnotationDelegate-Protocol.h │ │ ├── DVTTextCompletionItem-Protocol.h │ │ ├── DVTTextCompletionItemInfoProvider-Protocol.h │ │ ├── DVTTextFindable-Protocol.h │ │ ├── DVTTextReplacable-Protocol.h │ │ ├── DVTTextlikeFindDescriptor-Protocol.h │ │ ├── DVTTileViewDelegate-Protocol.h │ │ ├── DVTUndoManagerDelegate-Protocol.h │ │ ├── DVTWindowActivationStateObserver-Protocol.h │ │ ├── DVTXMLUnarchiving-Protocol.h │ │ ├── DockUtilities.h │ │ ├── IDEARCConversionApprovalAssistant.h │ │ ├── IDEARCConversionAssistantContext.h │ │ ├── IDEARCConversionBuildFile.h │ │ ├── IDEARCConversionGeneratingPreviewAssistant.h │ │ ├── IDEARCConversionReviewChangesAssistant.h │ │ ├── IDEARCConversionReviewChangesFile.h │ │ ├── IDEARCConversionTarget.h │ │ ├── IDEARCConversionTargetChooserAssistant.h │ │ ├── IDEARCConversionTargetChooserBuildFileItem.h │ │ ├── IDEARCConversionTargetChooserItem.h │ │ ├── IDEARCConversionTargetChooserTargetItem.h │ │ ├── IDEAboutWindowController.h │ │ ├── IDEAbstractLiveIssueProvider.h │ │ ├── IDEAccountPrefsDeveloperAccountDetailViewController.h │ │ ├── IDEAccountPrefsDeveloperAccountProfileCellView.h │ │ ├── IDEAccountPrefsEntitlementsIconsView.h │ │ ├── IDEAccountPrefsMultipleAccountsViewController.h │ │ ├── IDEAccountPrefsNoAccountsViewController.h │ │ ├── IDEAccountPrefsPaneAccount-Protocol.h │ │ ├── IDEAccountPrefsPaneController.h │ │ ├── IDEAccountPrefsServerDetailViewController.h │ │ ├── IDEAccountPrefsSourceControlDetailViewController.h │ │ ├── IDEAccountReachabilityToImageTransformer.h │ │ ├── IDEAccountTeamPickerListTeamsViewController.h │ │ ├── IDEAccountTeamPickerRefreshTeamsViewController.h │ │ ├── IDEAccountTeamPickerRowBase.h │ │ ├── IDEAccountTeamPickerSingleListTeamsViewController.h │ │ ├── IDEAccountTeamPickerWindowController.h │ │ ├── IDEAccountWrapper.h │ │ ├── IDEAccountsEnabledToTitleTextColorTransformer.h │ │ ├── IDEActionButton.h │ │ ├── IDEActionExplorationContext.h │ │ ├── IDEActionRunPhaseSheetController.h │ │ ├── IDEActionSliceViewController.h │ │ ├── IDEActionSliceViewControllerDelegate-Protocol.h │ │ ├── IDEActionStackView.h │ │ ├── IDEActiveRunContextStoring-Protocol.h │ │ ├── IDEActivityActionButtonLayer.h │ │ ├── IDEActivityLogRecord-IDEActivityLogAdditions.h │ │ ├── IDEActivityLogRecord-IDEKitActivityLogRecordPropertyAdditions.h │ │ ├── IDEActivityLogTranscriptLayoutManager.h │ │ ├── IDEActivityMultiActionIndicatorLayer.h │ │ ├── IDEActivityPopUpContentLayer.h │ │ ├── IDEActivityPopUpContentLayerController.h │ │ ├── IDEActivityPopUpContentLayerControllerDelegate-Protocol.h │ │ ├── IDEActivityPopUpContentLayerDelegate-Protocol.h │ │ ├── IDEActivityPopUpContentView.h │ │ ├── IDEActivityPopUpReportLayer.h │ │ ├── IDEActivityPopUpWindowController.h │ │ ├── IDEActivityProgressIndicatorLayer.h │ │ ├── IDEActivityReport.h │ │ ├── IDEActivityReportDateStringSegment.h │ │ ├── IDEActivityReportFileIOCoordinator.h │ │ ├── IDEActivityReportLayer.h │ │ ├── IDEActivityReportManager.h │ │ ├── IDEActivityReportStringSegment.h │ │ ├── IDEActivityReporter.h │ │ ├── IDEActivityScrollingTextLayer.h │ │ ├── IDEActivityStatusCategory.h │ │ ├── IDEActivityStatusCategoryLayer.h │ │ ├── IDEActivityStatusCompositeCategory.h │ │ ├── IDEActivityStatusContainerLabelLayer.h │ │ ├── IDEActivityStatusContainerLayer.h │ │ ├── IDEActivityTestingActivityReporter.h │ │ ├── IDEActivityTestingMenuDelegate.h │ │ ├── IDEActivityView.h │ │ ├── IDEActivityViewBackgroundButton.h │ │ ├── IDEActivityViewDataConsumer-Protocol.h │ │ ├── IDEActivityViewDataSource.h │ │ ├── IDEAddContainerItemsAssistant.h │ │ ├── IDEAddContainerItemsAssistantContext.h │ │ ├── IDEAddTestBundleToSchemeActionSheetHelper.h │ │ ├── IDEAlert-IDEAlertUI.h │ │ ├── IDEAlertViewController.h │ │ ├── IDEAlertsMenuDelegate.h │ │ ├── IDEAlertsPrefsBehaviorTableCellView.h │ │ ├── IDEAlertsPrefsCustomBehaviorTableCellView.h │ │ ├── IDEAlertsPrefsPaneController.h │ │ ├── IDEAlertsView.h │ │ ├── IDEAnalyzeActionSheetController.h │ │ ├── IDEAnalyzePostActionRunPhaseSheetController.h │ │ ├── IDEAnalyzePreActionRunPhaseSheetController.h │ │ ├── IDEAnalyzeSubActionPlaceholderView.h │ │ ├── IDEAnalyzerResultExplorationContext.h │ │ ├── IDEAnnotationContext.h │ │ ├── IDEAppChooserModelObject.h │ │ ├── IDEAppChooserTableView.h │ │ ├── IDEAppChooserWindowController.h │ │ ├── IDEAppEnergyGraph.h │ │ ├── IDEAppIDFeatureDelegate-Protocol.h │ │ ├── IDEAppIDItemIdentifiersItemModelSet.h │ │ ├── IDEAppIDItemIdentifiersTableViewController.h │ │ ├── IDEAppStatistics.h │ │ ├── IDEApplication.h │ │ ├── IDEApplicationCommands.h │ │ ├── IDEApplicationController.h │ │ ├── IDEApplicationEventDelegate-Protocol.h │ │ ├── IDEArchivableStringIndexPair.h │ │ ├── IDEArchive-AAVArchiveViewerExtensions.h │ │ ├── IDEArchiveRunPhaseSheetController.h │ │ ├── IDEArgumentsCapsuleSheetController.h │ │ ├── IDEAssertionHandler.h │ │ ├── IDEAssetTagTokenAttachmentCell.h │ │ ├── IDEAssetTagsInspector.h │ │ ├── IDEAssistant.h │ │ ├── IDEAssistantContext.h │ │ ├── IDEAssistantWindowController.h │ │ ├── IDEAttachToProcessHelper.h │ │ ├── IDEAttachToProcessSheet.h │ │ ├── IDEAttachToProcessSheetDelegate-Protocol.h │ │ ├── IDEAttributedStringControl.h │ │ ├── IDEAttributedStringControlParagraphStyleEditingProxy.h │ │ ├── IDEAttributedStringControlParagraphStylePopoverController.h │ │ ├── IDEAttributedStringControlParagraphStylePopoverInsetView.h │ │ ├── IDEAttributedStringControlTextView.h │ │ ├── IDEAttributedStringControlTextViewDelegate-Protocol.h │ │ ├── IDEAttributedStringControlTextViewFocusRingOverlay.h │ │ ├── IDEAttributedStringScrollView.h │ │ ├── IDEAutoForwardScrollEventsScrollView.h │ │ ├── IDEAutoImportBuildableProductProxy.h │ │ ├── IDEAutoImportCompletionItem.h │ │ ├── IDEBackgroundModesItemModel.h │ │ ├── IDEBarGraph.h │ │ ├── IDEBaseDocumentNavigableItem.h │ │ ├── IDEBatchDocumentFindable.h │ │ ├── IDEBatchFindActivityReporter.h │ │ ├── IDEBatchFindCandidateFile.h │ │ ├── IDEBatchFindColonSuffixPathCell.h │ │ ├── IDEBatchFindColonSuffixPathControl.h │ │ ├── IDEBatchFindCommands.h │ │ ├── IDEBatchFindCriteria.h │ │ ├── IDEBatchFindFileLocator.h │ │ ├── IDEBatchFindFileSystemLocator.h │ │ ├── IDEBatchFindFunctionType.h │ │ ├── IDEBatchFindLocationOutlineView.h │ │ ├── IDEBatchFindLocationPickerCell.h │ │ ├── IDEBatchFindLocationPickerItem.h │ │ ├── IDEBatchFindLocationPickerNavigableItem.h │ │ ├── IDEBatchFindLocationPickerSchemeItem.h │ │ ├── IDEBatchFindLocationPickerView.h │ │ ├── IDEBatchFindNavigator.h │ │ ├── IDEBatchFindNavigatorContentLayoutView.h │ │ ├── IDEBatchFindPathBarMatchStyleType.h │ │ ├── IDEBatchFindPathBarMatchStyleTypeOption.h │ │ ├── IDEBatchFindPathBarMenuItem.h │ │ ├── IDEBatchFindPathControlNavigable.h │ │ ├── IDEBatchFindQuery.h │ │ ├── IDEBatchFindRawTextLineLocationFinder.h │ │ ├── IDEBatchFindReplaceButtonLayoutView.h │ │ ├── IDEBatchFindReplacePreviewController.h │ │ ├── IDEBatchFindReplaceableSheetController.h │ │ ├── IDEBatchFindResult.h │ │ ├── IDEBatchFindResultCheckBoxCell.h │ │ ├── IDEBatchFindResultCheckBoxTableCellView.h │ │ ├── IDEBatchFindResultGroup.h │ │ ├── IDEBatchFindResultGroupDelegate-Protocol.h │ │ ├── IDEBatchFindResultSet.h │ │ ├── IDEBatchFindResultSetProtocol-Protocol.h │ │ ├── IDEBatchFindResultUIState.h │ │ ├── IDEBatchFindResultsOutlineController.h │ │ ├── IDEBatchFindRuleEditor.h │ │ ├── IDEBatchFindRuleEditorDelegate-Protocol.h │ │ ├── IDEBatchFindScopeEditor.h │ │ ├── IDEBatchFindScopeEditorDelegateProxy.h │ │ ├── IDEBatchFindScopeFileTypeRow.h │ │ ├── IDEBatchFindScopeLocationRow.h │ │ ├── IDEBatchFindScopePredicate.h │ │ ├── IDEBatchFindScopeRuleNode.h │ │ ├── IDEBatchFindScopeRuleRow.h │ │ ├── IDEBatchFindScopeRuleRowDelegate-Protocol.h │ │ ├── IDEBatchFindScopeTextStaticRow.h │ │ ├── IDEBatchFindStatusCell.h │ │ ├── IDEBatchFindStrategiesController.h │ │ ├── IDEBatchFindSymbolicFindCriteria.h │ │ ├── IDEBatchFindSymbolicQuery.h │ │ ├── IDEBatchFindTextQuery.h │ │ ├── IDEBatchFindTextualFindCriteria.h │ │ ├── IDEBatchFindTwoButtonLayout.h │ │ ├── IDEBatchFindWorkspaceFileLocator.h │ │ ├── IDEBatchFindable.h │ │ ├── IDEBatchRawTextFindable.h │ │ ├── IDEBindableDeclarativeInspectorController-Protocol.h │ │ ├── IDEBlockScrollView.h │ │ ├── IDEBlueprintProvider-Protocol.h │ │ ├── IDEBotsURLHandler.h │ │ ├── IDEBounceAlert.h │ │ ├── IDEBounceAlertViewController.h │ │ ├── IDEBreakpointActivationDebugBarContentProvider.h │ │ ├── IDEBreakpointIcon.h │ │ ├── IDEBuildAlertMonitor.h │ │ ├── IDEBuildFolderLocationSheetController.h │ │ ├── IDEBuildFolderLocationSheetControllerDelegate-Protocol.h │ │ ├── IDEBuildIssueAnnotation.h │ │ ├── IDEBuildIssueErrorAnnotation.h │ │ ├── IDEBuildIssueNoticeAnnotation.h │ │ ├── IDEBuildIssueProvider-IDEKitAdditions.h │ │ ├── IDEBuildIssueStaticAnalyzerEventStepAnnotation.h │ │ ├── IDEBuildIssueStaticAnalyzerResultAnnotation.h │ │ ├── IDEBuildIssueStaticAnalyzerWarningAnnotation.h │ │ ├── IDEBuildIssueWarningAnnotation.h │ │ ├── IDEBuildResultsOutlineDelegate-Protocol.h │ │ ├── IDEBuildResultsOutlineLogic.h │ │ ├── IDEBuildRunPhaseBlueprintProviderWrapper.h │ │ ├── IDEBuildRunPhaseBlueprintWrapper.h │ │ ├── IDEBuildRunPhaseSheetController.h │ │ ├── IDEBuildSystemActivityReporter.h │ │ ├── IDEBuildable-Protocol.h │ │ ├── IDEBuildableProduct-Protocol.h │ │ ├── IDEButtonWithBackgroundColor.h │ │ ├── IDECallHierarchyDomainProvider.h │ │ ├── IDECallHierarchyItem.h │ │ ├── IDECallHierarchyViewController.h │ │ ├── IDECancellableToken.h │ │ ├── IDECapsuleFooterView.h │ │ ├── IDECapsuleHeaderView.h │ │ ├── IDECapsuleListView.h │ │ ├── IDECapsuleListViewDataSource-Protocol.h │ │ ├── IDECapsuleView.h │ │ ├── IDECapsuleViewController-Protocol.h │ │ ├── IDECapsuleViewDelegate-Protocol.h │ │ ├── IDEClassIconProvider.h │ │ ├── IDECleanBuildFolderActivityReporter.h │ │ ├── IDECodeModule-NSPasteboardSupport.h │ │ ├── IDECodeModuleDefaultSortDescriptor.h │ │ ├── IDECodeSnippet.h │ │ ├── IDECodeSnippetCompletionItem.h │ │ ├── IDECodeSnippetCompletionItemInfoViewController.h │ │ ├── IDECodeSnippetCompletionScopeRowController.h │ │ ├── IDECodeSnippetCompletionScopeRowValue.h │ │ ├── IDECodeSnippetLibrary.h │ │ ├── IDECodeSnippetLibraryCompletionStrategy.h │ │ ├── IDECodeSnippetLibraryDetailEditorController.h │ │ ├── IDECodeSnippetLibraryPlatformFamilyValueTransformer.h │ │ ├── IDECodeSnippetRepository.h │ │ ├── IDECodesignIssueAlertConfiguration.h │ │ ├── IDECodesignIssueResolutionAbstractGenerateProfileOption.h │ │ ├── IDECodesignIssueResolutionAlertViewController.h │ │ ├── IDECodesignIssueResolutionDescription.h │ │ ├── IDECodesignIssueResolutionFixIssueViewController.h │ │ ├── IDECodesignIssueResolutionGenerateDevelopmentProfileOption.h │ │ ├── IDECodesignIssueResolutionGenerateDistributionProfileOption.h │ │ ├── IDECodesignIssueResolutionImportDeveloperProfileOption.h │ │ ├── IDECodesignIssueResolutionOption.h │ │ ├── IDECodesignIssueResolutionOptionCancel.h │ │ ├── IDECodesignIssueResolutionPortalSource.h │ │ ├── IDECodesignIssueResolutionRequestCertificateOption.h │ │ ├── IDECodesignIssueResolutionViewController.h │ │ ├── IDECodesignIssueResolutionVisitPortalOption.h │ │ ├── IDECodesignIssueResolutionWindowController.h │ │ ├── IDECodesignIssueResolver.h │ │ ├── IDECodesignIssueResolverAppIDRequirements.h │ │ ├── IDECodesigningInfoDelegateProvider-Protocol.h │ │ ├── IDECodesigningSettingsMacViewController.h │ │ ├── IDECodesigningSettingsViewController.h │ │ ├── IDECombinedDownloadsPrefPaneController.h │ │ ├── IDECommandHandler-Protocol.h │ │ ├── IDECommandHandlerVendor-Protocol.h │ │ ├── IDECommandLineArgumentEntry-NSPasteboardSupport.h │ │ ├── IDECommandManager.h │ │ ├── IDEComparisonEditor.h │ │ ├── IDEComparisonEditorAutoLayoutView.h │ │ ├── IDEComparisonEditorChangesStepperView.h │ │ ├── IDEComparisonEditorDataSource-Protocol.h │ │ ├── IDEComparisonEditorDelegate-Protocol.h │ │ ├── IDEComparisonEditorSubmode.h │ │ ├── IDEComparisonEditorTimelineNavBar.h │ │ ├── IDEComparisonLineLayer.h │ │ ├── IDEComparisonNavTimelineBar.h │ │ ├── IDEComparisonNavTimelineView.h │ │ ├── IDEComparisonToolbar.h │ │ ├── IDECompletionDestinationDelegate-Protocol.h │ │ ├── IDECompletionDestinationManager.h │ │ ├── IDEComponentDownloadIconProvider-Protocol.h │ │ ├── IDEComponentDownloadsPrefPaneItem.h │ │ ├── IDEComponentDownloadsSupport.h │ │ ├── IDECompressedStackFrame-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDEConfigurableDataNode.h │ │ ├── IDEConfigurableDataSource.h │ │ ├── IDEConfigurableImageAndTextCell.h │ │ ├── IDEConsoleArea.h │ │ ├── IDEConsoleFontAndColorItem.h │ │ ├── IDEConsoleFontAndColorItemProvider.h │ │ ├── IDEConsoleTextCompletionDataSource.h │ │ ├── IDEConsoleTextView.h │ │ ├── IDEConsoleTextViewObjectiveCExpressionRangeDelegate-Protocol.h │ │ ├── IDEConsoleTextViewStandardIODelegate-Protocol.h │ │ ├── IDEContainer-IDEKitContainerAdditions.h │ │ ├── IDEContainer-IDENewFileTemplateAdditions.h │ │ ├── IDEContainer-InspectorProperties.h │ │ ├── IDEContainerContentsMediaRepository.h │ │ ├── IDEContainerDelegate-Protocol.h │ │ ├── IDEContainerErrorPresenter-Protocol.h │ │ ├── IDEContainerFileReferenceNavigableItem.h │ │ ├── IDEContainerItem-IDEKitContainerItemPropertyAdditions.h │ │ ├── IDEContainerItem-IDEKit_StructureEditing.h │ │ ├── IDEContainerItem-InspectorProperties.h │ │ ├── IDEContainerItemInspector.h │ │ ├── IDEContainerItemPasteboardManager.h │ │ ├── IDEContainerItemSnapshot.h │ │ ├── IDEContainerItemSnapshotNavigableItem.h │ │ ├── IDEContainerItemStructureEditingTarget.h │ │ ├── IDEContainerReloadingDelegate-Protocol.h │ │ ├── IDEContainerUnlockingDelegate-Protocol.h │ │ ├── IDEContextAutocreationController.h │ │ ├── IDEContinuousIntegrationActionManager-Protocol.h │ │ ├── IDEContinuousIntegrationCreateEditBotErrorSheet.h │ │ ├── IDEContinuousIntegrationCreateEditBotWindowController-Protocol.h │ │ ├── IDEContinuousIntegrationLogNavigatorHelper-Protocol.h │ │ ├── IDEContinuousIntegrationManager.h │ │ ├── IDEContinuousIntegrationManagerObserver.h │ │ ├── IDEContinuousIntegrationNewServiceAccountController-Protocol.h │ │ ├── IDEContinuousIntegrationServiceManager-Protocol.h │ │ ├── IDEControlGroup.h │ │ ├── IDECounterpartsGeniusResultsFinder.h │ │ ├── IDECoverageDocumentItem.h │ │ ├── IDECoverageDocumentItemGroup.h │ │ ├── IDECoverageItemsDomainProvider.h │ │ ├── IDECoverageNodeTextFieldCell.h │ │ ├── IDECoverageReportDeviceStatusTableCellView.h │ │ ├── IDECoverageReportMeterBar.h │ │ ├── IDECoverageReportProgressBarTableCellView.h │ │ ├── IDECoverageReportTableRowView.h │ │ ├── IDECoverageReportViewController.h │ │ ├── IDECoverageResultsDocumentLocation.h │ │ ├── IDECoverageTextVisualization.h │ │ ├── IDECoverage_Base-Protocol.h │ │ ├── IDECoverage_File-Protocol.h │ │ ├── IDECoverage_Method-Protocol.h │ │ ├── IDECoverage_RootObject-Protocol.h │ │ ├── IDECoverage_Target-Protocol.h │ │ ├── IDECrashPoint-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDECustomAlertEvent.h │ │ ├── IDECustomToolbar.h │ │ ├── IDEDebugArea.h │ │ ├── IDEDebugAreaBorderedView.h │ │ ├── IDEDebugBar.h │ │ ├── IDEDebugBarContentProvider-Protocol.h │ │ ├── IDEDebugBarContentProvider.h │ │ ├── IDEDebugCellHostingControl.h │ │ ├── IDEDebugCellHostingTableCellView.h │ │ ├── IDEDebugFetchEventOptionsController.h │ │ ├── IDEDebugGaugeDomainProvider.h │ │ ├── IDEDebugGaugeReportContentBackground.h │ │ ├── IDEDebugGaugeReportContentDelegate-Protocol.h │ │ ├── IDEDebugGaugeReportDocument.h │ │ ├── IDEDebugGaugeReportEditor.h │ │ ├── IDEDebugGaugeReportHeaderBackground.h │ │ ├── IDEDebugGaugeReportSection.h │ │ ├── IDEDebugGaugeReportTopSection.h │ │ ├── IDEDebugGaugeReportTopSectionContentDelegate-Protocol.h │ │ ├── IDEDebugGaugeReportTopSectionDescriptionEntry.h │ │ ├── IDEDebugGaugeTrayCell.h │ │ ├── IDEDebugNavigableModel-Protocol.h │ │ ├── IDEDebugNavigator.h │ │ ├── IDEDebugNavigatorOutlineView.h │ │ ├── IDEDebugNavigatorStackFrameRowView.h │ │ ├── IDEDebugSession-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDEDebugSessionController-Protocol.h │ │ ├── IDEDebugTopNavigableModel-Protocol.h │ │ ├── IDEDebugXPCOptionsController.h │ │ ├── IDEDebuggerBarEditorInfoProvider-Protocol.h │ │ ├── IDEDebuggerMenuDelegate.h │ │ ├── IDEDebuggingAdditionUIController-Protocol.h │ │ ├── IDEDebuggingAdditionUIControllerObserverEntry.h │ │ ├── IDEDeclarativeInspectorDynamicVisibilityManager.h │ │ ├── IDEDeclarativeInspectorGenerator.h │ │ ├── IDEDefaultDebugArea.h │ │ ├── IDEDefaultMediaLibrary-Protocol.h │ │ ├── IDEDestinationMenuDelegate.h │ │ ├── IDEDetailedAlert.h │ │ ├── IDEDeviceActivityReporter.h │ │ ├── IDEDeviceURLHandler.h │ │ ├── IDEDeviceUnavailableAlertHelper.h │ │ ├── IDEDiagnosticActivityLogMessage-KitAdditions.h │ │ ├── IDEDiagnosticExplorationContext.h │ │ ├── IDEDialogAlert.h │ │ ├── IDEDialogAlertViewController.h │ │ ├── IDEDistributionAppRecordSelectionViewController.h │ │ ├── IDEDistributionAppRecordStepViewController.h │ │ ├── IDEDistributionAppStoreConfigurationStepViewController.h │ │ ├── IDEDistributionAssistantWindowController.h │ │ ├── IDEDistributionDirectValidationStepViewController.h │ │ ├── IDEDistributionDryRunPackagingStepViewController.h │ │ ├── IDEDistributionEmptyArrayTransformer.h │ │ ├── IDEDistributionManifestStepViewController.h │ │ ├── IDEDistributionMethodStepViewController.h │ │ ├── IDEDistributionOptionLinkTextField.h │ │ ├── IDEDistributionOptionsSliceViewController.h │ │ ├── IDEDistributionOptionsStepViewController.h │ │ ├── IDEDistributionPackagingStepViewController.h │ │ ├── IDEDistributionProgressViewController.h │ │ ├── IDEDistributionResultFailureViewController.h │ │ ├── IDEDistributionResultSuccessViewController.h │ │ ├── IDEDistributionResultViewController.h │ │ ├── IDEDistributionSigningAssetErrorsViewController.h │ │ ├── IDEDistributionSigningAssetsStepViewController.h │ │ ├── IDEDistributionStepViewController.h │ │ ├── IDEDistributionSummaryItem.h │ │ ├── IDEDistributionSummaryItemTableCellView.h │ │ ├── IDEDistributionSummaryStepViewController.h │ │ ├── IDEDistributionTableCellView.h │ │ ├── IDEDistributionThinningStepViewController.h │ │ ├── IDEDistributionUploadStepViewController.h │ │ ├── IDEDistributionUtilities.h │ │ ├── IDEDistributionValidationStepViewController.h │ │ ├── IDEDistributioniTunesConnectAccountErrorViewController.h │ │ ├── IDEDistributioniTunesConnectAccountStepViewController.h │ │ ├── IDEDocumentController.h │ │ ├── IDEDocumentFrameworkFilePathNavigableItem.h │ │ ├── IDEDocumentLocationNavigableItem.h │ │ ├── IDEDocumentStructureProviding-Protocol.h │ │ ├── IDEDocumentURLNavigableItem.h │ │ ├── IDEDocumentVersioningOptionsController.h │ │ ├── IDEDocumentationWindow-Protocol.h │ │ ├── IDEDownloadableCapsuleViewController.h │ │ ├── IDEDownloadableContentTypeGroup.h │ │ ├── IDEDownloadableContext.h │ │ ├── IDEDownloadableInstallationHelper.h │ │ ├── IDEDownloadableTableRowView.h │ │ ├── IDEDownloadablesActivityReporter.h │ │ ├── IDEDownloadsPrefDownloadableItemTableCellView.h │ │ ├── IDEDummyFindReplacePreviewProvider.h │ │ ├── IDEDummyQuickLookProvider.h │ │ ├── IDEEditor.h │ │ ├── IDEEditorArea.h │ │ ├── IDEEditorAreaContainer-Protocol.h │ │ ├── IDEEditorBasicMode.h │ │ ├── IDEEditorContainerDocument.h │ │ ├── IDEEditorContents.h │ │ ├── IDEEditorContext.h │ │ ├── IDEEditorContextDelegate-Protocol.h │ │ ├── IDEEditorContextProtocol-Protocol.h │ │ ├── IDEEditorCoordinator.h │ │ ├── IDEEditorDelegate-Protocol.h │ │ ├── IDEEditorDocument.h │ │ ├── IDEEditorDocumentDerivedContentProvider.h │ │ ├── IDEEditorDocumentPreviewProvider.h │ │ ├── IDEEditorDocumentValidatedUserInterfaceItem.h │ │ ├── IDEEditorEmpty.h │ │ ├── IDEEditorFindMenuDelegate.h │ │ ├── IDEEditorGeniusMode.h │ │ ├── IDEEditorGeniusResults.h │ │ ├── IDEEditorHistoryController.h │ │ ├── IDEEditorHistoryItem.h │ │ ├── IDEEditorHistoryStack.h │ │ ├── IDEEditorIssueMenuController.h │ │ ├── IDEEditorMenuContentProvider-Protocol.h │ │ ├── IDEEditorMenuStepperView.h │ │ ├── IDEEditorMenuStepperViewDelegate-Protocol.h │ │ ├── IDEEditorModeToolbarViewController.h │ │ ├── IDEEditorModeViewController.h │ │ ├── IDEEditorMultipleContext.h │ │ ├── IDEEditorMultipleContextDelegate-Protocol.h │ │ ├── IDEEditorNumberStepperView.h │ │ ├── IDEEditorOpenSpecifier.h │ │ ├── IDEEditorReadOnlyIndicatorController.h │ │ ├── IDEEditorSplittingController.h │ │ ├── IDEEditorSplittingControllerDelegate-Protocol.h │ │ ├── IDEEditorStepperView.h │ │ ├── IDEEditorVersionsMode.h │ │ ├── IDEEnableUITestingAccessViewController.h │ │ ├── IDEEnergyAdditionDocument.h │ │ ├── IDEEnergyAdditionEditor.h │ │ ├── IDEEnergyAdditionGuidance.h │ │ ├── IDEEnergyAdditionGuidanceView.h │ │ ├── IDEEnergyAdditionUIController.h │ │ ├── IDEEnergyAnnotatedBarGraph.h │ │ ├── IDEEnergyAnnotatedBarGraphDelegate-Protocol.h │ │ ├── IDEEnterFullScreenAlert.h │ │ ├── IDEEnterFullScreenAlertViewController.h │ │ ├── IDEEntitlementsFile.h │ │ ├── IDEEntitlementsProcessorViewController.h │ │ ├── IDEEnvironmentVariableEntry-NSPasteboardSupport.h │ │ ├── IDEEnvironmentVariablesCapsuleSheetController.h │ │ ├── IDEEvaluatedStringFormatter.h │ │ ├── IDEExecutionActivityReporter.h │ │ ├── IDEExecutionEnvironment-IDEKitExecutionEnvironmentNavigableAdditions.h │ │ ├── IDEExecutionHoldAlertHelper.h │ │ ├── IDEExplorationContext.h │ │ ├── IDEFileIdentityAndTypePopupController.h │ │ ├── IDEFileInspectorCategoryController.h │ │ ├── IDEFileInspectorFileTypeGroup.h │ │ ├── IDEFileMediaRepository.h │ │ ├── IDEFileNavigableItem.h │ │ ├── IDEFilePickerPanel.h │ │ ├── IDEFilePickerView.h │ │ ├── IDEFilePickerViewDelegate-Protocol.h │ │ ├── IDEFileReference-IDEKitFileReferencePropertyAdditions.h │ │ ├── IDEFileReference-IDEKitFileReferenceSourceControlPropertyAdditions.h │ │ ├── IDEFileReference-InspectorProperties.h │ │ ├── IDEFileReferenceNavigableItem.h │ │ ├── IDEFileTemplateChooserAssistant.h │ │ ├── IDEFileTemplateCompletionAssistant.h │ │ ├── IDEFileTemplatesLibrary.h │ │ ├── IDEFileTextSettings.h │ │ ├── IDEFilterControlBar.h │ │ ├── IDEFilterControlBarTarget-Protocol.h │ │ ├── IDEFirstIssueAlert.h │ │ ├── IDEFirstIssueAlertViewController.h │ │ ├── IDEFirstLaunchAppToQuit.h │ │ ├── IDEFirstLaunchExperienceViewController.h │ │ ├── IDEFirstLaunchExperienceWindowController.h │ │ ├── IDEFirstResponderView.h │ │ ├── IDEFlightCheckListView.h │ │ ├── IDEFlightCheckListViewDelegate-Protocol.h │ │ ├── IDEFlightCheckView.h │ │ ├── IDEFlightChecking-Protocol.h │ │ ├── IDEFlightCheckingContext-Protocol.h │ │ ├── IDEFolder-InspectorProperties.h │ │ ├── IDEFontAndColorCategoriesCellView.h │ │ ├── IDEFontAndColorCategoriesRowView.h │ │ ├── IDEFontAndColorFontTransformer.h │ │ ├── IDEFontAndColorItem-Protocol.h │ │ ├── IDEFontAndColorPrefsPaneController.h │ │ ├── IDEFramework-IDEKitFrameworkPropertyAdditions.h │ │ ├── IDEFramework-InspectorProperties.h │ │ ├── IDEFrameworkFilePath.h │ │ ├── IDEFrameworkFilePathDomainProvider.h │ │ ├── IDEGaugeDocumentLocation-IDEKitAdditions.h │ │ ├── IDEGaugeReportTopSectionComponent.h │ │ ├── IDEGaugeReportTopSectionComponentEntry.h │ │ ├── IDEGaugeReportTopSectionContentBackground.h │ │ ├── IDEGeneralPrefsPaneController.h │ │ ├── IDEGeniusPackagedResults.h │ │ ├── IDEGeniusResultNavigableRepresentedObject-Protocol.h │ │ ├── IDEGeniusResultsFinder.h │ │ ├── IDEGeniusResultsGraphNode.h │ │ ├── IDEGeniusResultsGraphNodeNavigableItem.h │ │ ├── IDEGraph.h │ │ ├── IDEGraphChart.h │ │ ├── IDEGraphDelegate-Protocol.h │ │ ├── IDEGraphModel.h │ │ ├── IDEGraphModelChartsModificationDelegate-Protocol.h │ │ ├── IDEGroup-IDEKitGroupPropertyAdditions.h │ │ ├── IDEGroup-IDEKitGroupSourceControlPropertyAdditions.h │ │ ├── IDEGroup-InspectorProperties.h │ │ ├── IDEGroupNavigableItem.h │ │ ├── IDEGroupedSegmentedControl.h │ │ ├── IDEGroupedSegmentedControlDelegate-Protocol.h │ │ ├── IDEGroupedSegmentedControlGroup.h │ │ ├── IDEGroupedSegmentedControlItem.h │ │ ├── IDEHelpMenuDelegate.h │ │ ├── IDEHelperAppMenuDelegate.h │ │ ├── IDEIOSMediaResourceFoldingStrategy.h │ │ ├── IDEIconCreator.h │ │ ├── IDEIconEntry.h │ │ ├── IDEIconSetMediaResource.h │ │ ├── IDEIconTextAttachmentCell.h │ │ ├── IDEIgnoredImageView.h │ │ ├── IDEImageMediaResource.h │ │ ├── IDEImageMediaType.h │ │ ├── IDEImportStatementAdditionalCompletion.h │ │ ├── IDEIncludesGeniusResultsFinder.h │ │ ├── IDEIndexCompletionItem-IDEKitExtensions.h │ │ ├── IDEIndexCompletionStrategy.h │ │ ├── IDEIndexGeniusResult.h │ │ ├── IDEIndexGeniusResultNavigableItem.h │ │ ├── IDEIndexGeniusResultsFinder.h │ │ ├── IDEIndexSymbol-IDEKitExtensions.h │ │ ├── IDEIndexSymbolSelectionSource-Protocol.h │ │ ├── IDEIndexerActivityReporter.h │ │ ├── IDEInitialization-Protocol.h │ │ ├── IDEInspectorAbstractActionProperty.h │ │ ├── IDEInspectorActionButtonProperty.h │ │ ├── IDEInspectorActionMenuProperty.h │ │ ├── IDEInspectorArea.h │ │ ├── IDEInspectorArrayProperty.h │ │ ├── IDEInspectorArrayView.h │ │ ├── IDEInspectorAssetTagProperty.h │ │ ├── IDEInspectorAttributedStringProperty.h │ │ ├── IDEInspectorBasicStringProperty.h │ │ ├── IDEInspectorBooleanProperty.h │ │ ├── IDEInspectorCapsuleAddLozengeButton.h │ │ ├── IDEInspectorCapsuleController.h │ │ ├── IDEInspectorCapsuleTextLozenge.h │ │ ├── IDEInspectorCategoryController.h │ │ ├── IDEInspectorCenteringView.h │ │ ├── IDEInspectorChooser.h │ │ ├── IDEInspectorChooserCategory.h │ │ ├── IDEInspectorChooserChoice.h │ │ ├── IDEInspectorColorProperty.h │ │ ├── IDEInspectorContentController-Protocol.h │ │ ├── IDEInspectorContentView.h │ │ ├── IDEInspectorDateProperty.h │ │ ├── IDEInspectorEdgeInsetsProperty.h │ │ ├── IDEInspectorEnumerationProperty.h │ │ ├── IDEInspectorFontProperty.h │ │ ├── IDEInspectorImageEnumerationProperty.h │ │ ├── IDEInspectorImageMatrixProperty.h │ │ ├── IDEInspectorKeyPath.h │ │ ├── IDEInspectorLayoutGroup.h │ │ ├── IDEInspectorLayoutGroupWrapper.h │ │ ├── IDEInspectorLayoutStack.h │ │ ├── IDEInspectorLayoutViewWrapper.h │ │ ├── IDEInspectorListProperty.h │ │ ├── IDEInspectorMatching-Protocol.h │ │ ├── IDEInspectorNumberProperty.h │ │ ├── IDEInspectorPathFieldProperty.h │ │ ├── IDEInspectorPointProperty.h │ │ ├── IDEInspectorProperty.h │ │ ├── IDEInspectorPropertyLayoutGroup.h │ │ ├── IDEInspectorRectProperty.h │ │ ├── IDEInspectorResizableMatrix.h │ │ ├── IDEInspectorResizableSegmentedControlView.h │ │ ├── IDEInspectorResizableTextField.h │ │ ├── IDEInspectorScrubberProperty.h │ │ ├── IDEInspectorSizeProperty.h │ │ ├── IDEInspectorSliver.h │ │ ├── IDEInspectorStaticStringProperty.h │ │ ├── IDEInspectorStringProperty.h │ │ ├── IDEInspectorTextEnumerationOption.h │ │ ├── IDEInspectorTextEnumerationOptionGroup.h │ │ ├── IDEInspectorTextEnumerationProperty.h │ │ ├── IDEInspectorValueElement-Protocol.h │ │ ├── IDEInspectorViewController.h │ │ ├── IDEInstallActionSheetController.h │ │ ├── IDEInstrumentsLaunchHelper.h │ │ ├── IDEIntegrateActionSheetController.h │ │ ├── IDEIssue-IDEKitAdditions.h │ │ ├── IDEIssueAnnotationProvider.h │ │ ├── IDEIssueFileGroup-IDEKitAdditions.h │ │ ├── IDEIssueFileGroupNavigableItem.h │ │ ├── IDEIssueGroup-IDEKitAdditions.h │ │ ├── IDEIssueGroupNavigableItem.h │ │ ├── IDEIssueLogRecordsGroup-IDEIssueLogRecordsGroup_KitAdditions.h │ │ ├── IDEIssueManager-IDEKitAdditions.h │ │ ├── IDEIssueNavigableItem.h │ │ ├── IDEIssueNavigator.h │ │ ├── IDEIssueProvider-IDEKitAdditions.h │ │ ├── IDEIssueTypeGroup-IDEKitAdditions.h │ │ ├── IDEJumpToField.h │ │ ├── IDEJumpToFieldCell.h │ │ ├── IDEKeyBinding.h │ │ ├── IDEKeyBindingField.h │ │ ├── IDEKeyBindingFieldCell.h │ │ ├── IDEKeyBindingFieldCellDelegate-Protocol.h │ │ ├── IDEKeyBindingFieldEditor.h │ │ ├── IDEKeyBindingItem.h │ │ ├── IDEKeyBindingPreferenceSet.h │ │ ├── IDEKeyBindingPreferenceSetManager.h │ │ ├── IDEKeyBindingSet.h │ │ ├── IDEKeyBindingsPrefsPaneController.h │ │ ├── IDEKeyDrivenNavigableItem.h │ │ ├── IDEKeyDrivenNavigableItemRepresentedObject-Protocol.h │ │ ├── IDEKeyboardShortcut.h │ │ ├── IDELaunchActionOptionViewController.h │ │ ├── IDELaunchRunPhaseSheetController.h │ │ ├── IDELaunchServicesRegistrationHelper.h │ │ ├── IDELibraryArea.h │ │ ├── IDELibraryController.h │ │ ├── IDELicenseAgreementViewController.h │ │ ├── IDELocalizationActivityReporter.h │ │ ├── IDELocalizationController-Protocol.h │ │ ├── IDELocalizationExportContext.h │ │ ├── IDELocalizationExportController.h │ │ ├── IDELocalizationImportContext.h │ │ ├── IDELocalizationImportController.h │ │ ├── IDELocalizationOptionsController.h │ │ ├── IDELocalizationXLIFFComparisonFile-Xcode3LocalizationFile.h │ │ ├── IDELocalizationXLIFFComparisonIssue-Xcode3LocalizationIssue.h │ │ ├── IDELocalizedContainer-Protocol.h │ │ ├── IDELocationCategoryPrefsPaneController.h │ │ ├── IDELocationScenario-SchemeOptions.h │ │ ├── IDELocationsPrefsPaneController.h │ │ ├── IDELogAndTestsEditor.h │ │ ├── IDELogBreakpointAction.h │ │ ├── IDELogDocument.h │ │ ├── IDELogEditor.h │ │ ├── IDELogEditorScopeBar.h │ │ ├── IDELogEditorScopeBarDelegate-Protocol.h │ │ ├── IDELogGeniusResultsFinder.h │ │ ├── IDELogManager-IDEKitAdditions.h │ │ ├── IDELogNavigator.h │ │ ├── IDELogNavigatorBotOfflineCell.h │ │ ├── IDELogNavigatorItem.h │ │ ├── IDELogNavigatorLoadMoreItem.h │ │ ├── IDELogNavigatorRootItem.h │ │ ├── IDELogNavigatorStatusView.h │ │ ├── IDELogNoTestsViewController.h │ │ ├── IDELogTestsViewController.h │ │ ├── IDELogTestsViewDocumentLocation.h │ │ ├── IDELogTestsViewTestGroup.h │ │ ├── IDELogTestsViewTestSummaryTestRun.h │ │ ├── IDELogTestsViewTestSummaryWrapper.h │ │ ├── IDELogViewController.h │ │ ├── IDEManageRunContextsSheetController.h │ │ ├── IDEMarkupFontAndColorItem.h │ │ ├── IDEMarkupFontAndColorItemProvider.h │ │ ├── IDEMediaLibraryController.h │ │ ├── IDEMediaLibraryDelegate-Protocol.h │ │ ├── IDEMediaPasteHandler.h │ │ ├── IDEMediaRangeValue.h │ │ ├── IDEMediaRepository.h │ │ ├── IDEMediaResource.h │ │ ├── IDEMediaResourceCacheKey.h │ │ ├── IDEMediaResourceFoldingStrategy.h │ │ ├── IDEMediaResourceVariantContext.h │ │ ├── IDEMediaResourceVariantSet.h │ │ ├── IDEMediaResourceVariantVariable.h │ │ ├── IDEMediaType.h │ │ ├── IDEMenuBuilder.h │ │ ├── IDEMenuKeyBinding.h │ │ ├── IDEMenuKeyBindingSet.h │ │ ├── IDEMethodSourceCodeGenerator-Protocol.h │ │ ├── IDEMigrationAssistantContext.h │ │ ├── IDEMigrationTarget.h │ │ ├── IDEMigrationTargetChooserStatePersistence.h │ │ ├── IDEModule.h │ │ ├── IDEModuleNavigableItem.h │ │ ├── IDEModuleNavigableItemDomainProvider.h │ │ ├── IDEMustCloseOnQuitDocument-Protocol.h │ │ ├── IDEMutableMediaRepository.h │ │ ├── IDENICFilterProxy.h │ │ ├── IDENavBar.h │ │ ├── IDENavigableItem.h │ │ ├── IDENavigableItemArchivableRepresentation.h │ │ ├── IDENavigableItemAsyncFilteringCoordinator.h │ │ ├── IDENavigableItemBatchFindDomainProvider.h │ │ ├── IDENavigableItemCoordinator.h │ │ ├── IDENavigableItemCoordinatorDelegate-Protocol.h │ │ ├── IDENavigableItemDebugAreaDelegate-Protocol.h │ │ ├── IDENavigableItemDebugBarDelegate-Protocol.h │ │ ├── IDENavigableItemDomainProvider.h │ │ ├── IDENavigableItemExecutionEnvironmentDomainProvider.h │ │ ├── IDENavigableItemFileReferenceProxy-Protocol.h │ │ ├── IDENavigableItemFilter.h │ │ ├── IDENavigableItemFilteringCoordinator.h │ │ ├── IDENavigableItemIssuesDomainProvider.h │ │ ├── IDENavigableItemPredicateFilter.h │ │ ├── IDENavigableItemSourceControlDomainProvider.h │ │ ├── IDENavigableItemSymbolsDomainProvider.h │ │ ├── IDENavigableItemSyncFilteringCoordinator.h │ │ ├── IDENavigableItemTestsDomainProvider.h │ │ ├── IDENavigableItemUniquingAsyncFilteringCoordinator.h │ │ ├── IDENavigableItemWorkingTreeItemHolderDomainProvider.h │ │ ├── IDENavigableItemWorkspaceBotExecutionLogDomainProvider.h │ │ ├── IDENavigableItemWorkspaceBotLogDomainProvider.h │ │ ├── IDENavigableItemWorkspaceByTimeLogsDomainProvider.h │ │ ├── IDENavigableItemWorkspaceGroupedLogsDomainProvider.h │ │ ├── IDENavigableItemWorkspaceIssueLogsDomainProvider.h │ │ ├── IDENavigableItemWorkspaceStructureDomainProvider.h │ │ ├── IDENavigationHUDAbstractWorkspaceWindowLayer.h │ │ ├── IDENavigationHUDBackgroundView.h │ │ ├── IDENavigationHUDBorderedGradientLayer.h │ │ ├── IDENavigationHUDBorderedLayer-Protocol.h │ │ ├── IDENavigationHUDBorderedLayer.h │ │ ├── IDENavigationHUDController.h │ │ ├── IDENavigationHUDCoverFlowWrapperLayer.h │ │ ├── IDENavigationHUDDisposableLayer-Protocol.h │ │ ├── IDENavigationHUDImageAndTextLayer.h │ │ ├── IDENavigationHUDNavigableLayer-Protocol.h │ │ ├── IDENavigationHUDNewSplitSelection.h │ │ ├── IDENavigationHUDNewSplitTabLayoutCell.h │ │ ├── IDENavigationHUDNewSplitTabLayoutTreeLayer.h │ │ ├── IDENavigationHUDNewWorkspaceWindowLayer.h │ │ ├── IDENavigationHUDNewWorkspaceWindowSelection.h │ │ ├── IDENavigationHUDSelectableLayer-Protocol.h │ │ ├── IDENavigationHUDSelection.h │ │ ├── IDENavigationHUDSelectionDrivenLayer-Protocol.h │ │ ├── IDENavigationHUDSelectionView.h │ │ ├── IDENavigationHUDTabBarLayer.h │ │ ├── IDENavigationHUDTabBarNewTabLayer.h │ │ ├── IDENavigationHUDTabBarNewTabSelection.h │ │ ├── IDENavigationHUDTabBarTabLayer.h │ │ ├── IDENavigationHUDTabBarTabSelection.h │ │ ├── IDENavigationHUDTabLayer.h │ │ ├── IDENavigationHUDTabLayout.h │ │ ├── IDENavigationHUDTabLayoutCell.h │ │ ├── IDENavigationHUDTabLayoutLayer.h │ │ ├── IDENavigationHUDTabLayoutTreeNodeLayer.h │ │ ├── IDENavigationHUDWindowController.h │ │ ├── IDENavigationHUDWindowLevelNavigableLayer-Protocol.h │ │ ├── IDENavigationHUDWorkspaceWindowLayer.h │ │ ├── IDENavigationPrefsPaneController.h │ │ ├── IDENavigator.h │ │ ├── IDENavigatorArea.h │ │ ├── IDENavigatorDataCell.h │ │ ├── IDENavigatorFilterControlBar.h │ │ ├── IDENavigatorOutlineView.h │ │ ├── IDENavigatorOutlineViewDelegate-Protocol.h │ │ ├── IDENavigatorOutlineViewLoadingDelegate-Protocol.h │ │ ├── IDENavigatorSCMStatusCell.h │ │ ├── IDENavigatorSCMStatusTextField.h │ │ ├── IDENavigatorStatusCell.h │ │ ├── IDENewDeveloperAccountSheetWindowController.h │ │ ├── IDENewSchemeSheetController.h │ │ ├── IDENoEndCapTableHeaderView.h │ │ ├── IDENoFirstResponderPopover.h │ │ ├── IDENonEmptyTransformer.h │ │ ├── IDENonFoldingMediaResourceFoldingStrategy.h │ │ ├── IDENoteExplorationContext.h │ │ ├── IDEODRHostDistributionOptionsSliceViewController.h │ │ ├── IDEOSXMediaResourceFoldingStrategy.h │ │ ├── IDEObjCModernizationAssistantContext.h │ │ ├── IDEObjCModernizationGeneratingPreviewAssistant.h │ │ ├── IDEObjCModernizationOverviewAssistant.h │ │ ├── IDEObjCModernizationReviewChangesAssistant.h │ │ ├── IDEObjCModernizationReviewChangesFile.h │ │ ├── IDEObjCModernizationTarget.h │ │ ├── IDEObjCModernizationTargetChooserAssistant.h │ │ ├── IDEObjCModernizationTargetChooserItem.h │ │ ├── IDEObjCModernizationTargetChooserTargetItem.h │ │ ├── IDEObjectiveCSourceCodeGenerator.h │ │ ├── IDEOnboardingPage.h │ │ ├── IDEOnboardingTutorialAppleIDViewController.h │ │ ├── IDEOnboardingTutorialController.h │ │ ├── IDEOnboardingTutorialDeviceViewController.h │ │ ├── IDEOnboardingTutorialIntroViewController.h │ │ ├── IDEOnboardingTutorialProjectViewController.h │ │ ├── IDEOnboardingTutorialRunViewController.h │ │ ├── IDEOnboardingTutorialSelectViewController.h │ │ ├── IDEOpenGLESOptionsController.h │ │ ├── IDEOpenQuicklyBackgroundView.h │ │ ├── IDEOpenQuicklyBoolToProgressValueTransformer.h │ │ ├── IDEOpenQuicklyContext.h │ │ ├── IDEOpenQuicklyDataSource.h │ │ ├── IDEOpenQuicklyDataSourceMonitor.h │ │ ├── IDEOpenQuicklyEditorMatchProvider.h │ │ ├── IDEOpenQuicklyExactPathMatchProvider.h │ │ ├── IDEOpenQuicklyIndexMatchProvider.h │ │ ├── IDEOpenQuicklyIndexSymbolMatch.h │ │ ├── IDEOpenQuicklyJumpToSupport-Protocol.h │ │ ├── IDEOpenQuicklyMatch.h │ │ ├── IDEOpenQuicklyMatchCell.h │ │ ├── IDEOpenQuicklyMatchProvider.h │ │ ├── IDEOpenQuicklyPathStringMatch.h │ │ ├── IDEOpenQuicklyProjectMatchProvider.h │ │ ├── IDEOpenQuicklyQuery.h │ │ ├── IDEOpenQuicklyQueryDelegate-Protocol.h │ │ ├── IDEOpenQuicklyScrollView.h │ │ ├── IDEOpenQuicklySearchFieldCell.h │ │ ├── IDEOpenQuicklySimplePathMatchProvider.h │ │ ├── IDEOpenQuicklySymbolMatchProvider.h │ │ ├── IDEOpenQuicklySystemHeaderMatchProvider.h │ │ ├── IDEOpenQuicklyTableView.h │ │ ├── IDEOpenQuicklyWindow.h │ │ ├── IDEOpenQuicklyWindowController.h │ │ ├── IDEOpenRequest-Protocol.h │ │ ├── IDEOpenResumeOptionController.h │ │ ├── IDEOrganizerSource-Protocol.h │ │ ├── IDEOrganizerWindow.h │ │ ├── IDEOrganizerWindowController.h │ │ ├── IDEOutlineBasedNavigator.h │ │ ├── IDEPGOSchemeCommandAccessoryViewController.h │ │ ├── IDEPOEmptyView.h │ │ ├── IDEPOEmptyViewController.h │ │ ├── IDEPOInfoViewController.h │ │ ├── IDEPOPrettyDateTransformer.h │ │ ├── IDEPOPrettyPathNameTransformer.h │ │ ├── IDEPackageInstallerHelper.h │ │ ├── IDEPackageInstallerViewController.h │ │ ├── IDEParagraphStylePopoverControllerDelegate-Protocol.h │ │ ├── IDEPatchDraggingController.h │ │ ├── IDEPathCell.h │ │ ├── IDEPathCellDelegate-Protocol.h │ │ ├── IDEPathCellNavigableItemObserver.h │ │ ├── IDEPathComponentCell.h │ │ ├── IDEPathComponentCellAccessibilityObject.h │ │ ├── IDEPathControl.h │ │ ├── IDEPauseResumeDebugBarContentProvider.h │ │ ├── IDEPeoplePickerContentViewController.h │ │ ├── IDEPeoplePickerEditPersonViewController.h │ │ ├── IDEPeoplePickerPickPersonViewController.h │ │ ├── IDEPeoplePickerPopUpContentController.h │ │ ├── IDEPerfTestBaselineUpdateActivityReporter.h │ │ ├── IDEPickerAccountRow.h │ │ ├── IDEPickerTeamRow.h │ │ ├── IDEPlayground-IDEKitAdditions.h │ │ ├── IDEPlaygroundCommon-NewFileTemplateAdditions.h │ │ ├── IDEPlaygroundCreationHelper.h │ │ ├── IDEPlaygroundNavigableItem.h │ │ ├── IDEPlaygroundPageNavigableItem.h │ │ ├── IDEPlaygroundSubFolderNavigableItem.h │ │ ├── IDEPlaygroundWithPlatformChoiceTemplateInstantiationContext.h │ │ ├── IDEPlotGraph.h │ │ ├── IDEPortalDatabaseMigrationHelper.h │ │ ├── IDEPostActionRunPhaseSheetController.h │ │ ├── IDEPreActionRunPhaseSheetController.h │ │ ├── IDEPreBuildSavingDelegate-Protocol.h │ │ ├── IDEPreferenceSetPopUpViewController.h │ │ ├── IDEPreferenceSetViewController.h │ │ ├── IDEPreferencesController.h │ │ ├── IDEPrimitiveSchemeCommand-Protocol.h │ │ ├── IDEProcessActionPopUpButton.h │ │ ├── IDEProcessActionPopUpCell.h │ │ ├── IDEProcessActionPopUpMenuItem.h │ │ ├── IDEProductMenuDelegate.h │ │ ├── IDEProfileActionSheetController.h │ │ ├── IDEProgramStatusCellView.h │ │ ├── IDEProgramStatusForMacOSXCellView.h │ │ ├── IDEProgressSearchField.h │ │ ├── IDEProgressSearchFieldCommandDelegate-Protocol.h │ │ ├── IDEProgressSearchFieldDelegate-Protocol.h │ │ ├── IDEProgressSearchSuggestionItem.h │ │ ├── IDEProjectItemHeaderView.h │ │ ├── IDEProjectItemModel.h │ │ ├── IDEProjectItemModelFlightCheck.h │ │ ├── IDEProjectItemModelFlightCheckContext.h │ │ ├── IDEProjectItemOffView.h │ │ ├── IDEProjectItemStatusView.h │ │ ├── IDEProjectItemStatusViewDelegate-Protocol.h │ │ ├── IDEProjectItemView.h │ │ ├── IDEProjectItemViewController.h │ │ ├── IDEProjectItemViewDelegate-Protocol.h │ │ ├── IDEProjectsOrganizerViewController.h │ │ ├── IDEProvisioningProfileActionCellView.h │ │ ├── IDEProvisioningProfileActionCellViewContents.h │ │ ├── IDEProvisioningProfilesViewController.h │ │ ├── IDEProvisioningProfilesViewControllerDelegate-Protocol.h │ │ ├── IDEProvisioningSigningIdentitiesViewController.h │ │ ├── IDEProvisioningSigningIdentitiesViewControllerDelegate-Protocol.h │ │ ├── IDEProvisioningTeamDetailsSheetController.h │ │ ├── IDEProvisioningTeamDetailsViewController.h │ │ ├── IDEQuickHelpConstants.h │ │ ├── IDERFSelectedObjectsValueTransformer.h │ │ ├── IDEReadOnlyItem-Protocol.h │ │ ├── IDEReadOnlyItemsManager-IDEKitAdditions.h │ │ ├── IDERecentDocumentInfo.h │ │ ├── IDERecentsHelper.h │ │ ├── IDERefactoring-IDERefactoringKitAdditions.h │ │ ├── IDERefactoringActionViewController.h │ │ ├── IDERefactoringCommands.h │ │ ├── IDERefactoringCreateSuperclassInputValidator.h │ │ ├── IDERefactoringCreateSuperclassTemplateFactory.h │ │ ├── IDERefactoringCreateSuperclassTemplateInstantiationContext.h │ │ ├── IDERefactoringCreateSuperclassViewController.h │ │ ├── IDERefactoringEncapsulateInputValidator.h │ │ ├── IDERefactoringEncapsulateViewController.h │ │ ├── IDERefactoringExpressionSource-Protocol.h │ │ ├── IDERefactoringExtractViewController.h │ │ ├── IDERefactoringFileChange.h │ │ ├── IDERefactoringFileChangeLocation.h │ │ ├── IDERefactoringFileChangeSet.h │ │ ├── IDERefactoringInputValidator.h │ │ ├── IDERefactoringIssue.h │ │ ├── IDERefactoringIssueLocation.h │ │ ├── IDERefactoringIssueNavigableItem.h │ │ ├── IDERefactoringMoveDownViewController.h │ │ ├── IDERefactoringMoveUpViewController.h │ │ ├── IDERefactoringNewFile.h │ │ ├── IDERefactoringNewFileNavigableItem.h │ │ ├── IDERefactoringRenameInputValidator.h │ │ ├── IDERefactoringRenameViewController.h │ │ ├── IDERefactoringRenamedFile.h │ │ ├── IDERefactoringRenamedFileNavigableItem.h │ │ ├── IDERefactoringResult-Protocol.h │ │ ├── IDERefactoringRevealingAnimation.h │ │ ├── IDERefactoringRevealingView.h │ │ ├── IDERefactoringSession.h │ │ ├── IDERefactoringSessionDelegate-Protocol.h │ │ ├── IDERefactoringSplitLayoutView.h │ │ ├── IDERefactoringTextLayoutView.h │ │ ├── IDERefactoringTransformationViewController.h │ │ ├── IDERefactoringViewController.h │ │ ├── IDERefactoringWindowController.h │ │ ├── IDEReviewFilesButtonCell.h │ │ ├── IDEReviewFilesDataSource-Protocol.h │ │ ├── IDEReviewFilesImageCell.h │ │ ├── IDEReviewFilesNavigator.h │ │ ├── IDEReviewFilesViewController.h │ │ ├── IDEReviewFilesViewControllerDelegate-Protocol.h │ │ ├── IDERollOverTableView.h │ │ ├── IDERoundPlaqueTextCell.h │ │ ├── IDERoundPlaqueView.h │ │ ├── IDERoundedRectScroller.h │ │ ├── IDERunAlertMonitor.h │ │ ├── IDERunDestination-IDENavigableItemAdditions.h │ │ ├── IDERunDestination-IDERunDestinationRepresentedObject.h │ │ ├── IDERunDestinationDisambiguationInfo.h │ │ ├── IDERunDestinationDisambiguator.h │ │ ├── IDERunDestinationGroup.h │ │ ├── IDERunDestinationMenuItemView.h │ │ ├── IDERunDestinationPlaceholder.h │ │ ├── IDERunDestinationRepresentedObject-Protocol.h │ │ ├── IDERunDestinationWithName.h │ │ ├── IDERunOptionsTableViewCapsuleSheetController.h │ │ ├── IDERunPauseContinueToolbarButton.h │ │ ├── IDERunPhasePlaceholderViewController.h │ │ ├── IDERunScriptAlert.h │ │ ├── IDERunScriptAlertViewController.h │ │ ├── IDERunSheetAnalyzePhaseModel.h │ │ ├── IDERunSheetAnalyzePostActionsSubphaseModel.h │ │ ├── IDERunSheetAnalyzePreActionsSubphaseModel.h │ │ ├── IDERunSheetArchivePhaseModel.h │ │ ├── IDERunSheetBuildPhaseModel.h │ │ ├── IDERunSheetController.h │ │ ├── IDERunSheetDataCell.h │ │ ├── IDERunSheetInstallPhaseModel.h │ │ ├── IDERunSheetIntegratePhaseModel.h │ │ ├── IDERunSheetLaunchPhaseModel.h │ │ ├── IDERunSheetPhaseModel.h │ │ ├── IDERunSheetPostActionsSubphaseModel.h │ │ ├── IDERunSheetPreActionsSubphaseModel.h │ │ ├── IDERunSheetPrimarySubphaseModel.h │ │ ├── IDERunSheetProfilePhaseModel.h │ │ ├── IDERunSheetSubphaseModel.h │ │ ├── IDERunSheetTestPhaseModel.h │ │ ├── IDESCMActivityReporter.h │ │ ├── IDESaveDestinationContext.h │ │ ├── IDESaveDestinationController.h │ │ ├── IDESaveDestinationControllerSavePanel.h │ │ ├── IDESaveMultipleItem.h │ │ ├── IDESaveMultipleWindowController.h │ │ ├── IDEScheme-IDESchemeImageAdditions.h │ │ ├── IDESchemeActionCodeCoverage-IDECoverageReportViewControllerAdditions.h │ │ ├── IDESchemeActionCodeCoverageFile-IDECoverageReportViewControllerAdditions.h │ │ ├── IDESchemeActionCodeCoverageFunction-IDECoverageReportViewControllerAdditions.h │ │ ├── IDESchemeActionCodeCoverageTarget-IDECoverageReportViewControllerAdditions.h │ │ ├── IDESchemeActionRunDestinationRecord-IDETestReportModelObjects.h │ │ ├── IDESchemeActionTestActivitySummary-IDETestReport_TestActivitySummary.h │ │ ├── IDESchemeActionTestFailureSummary-IDELogTestsViewController.h │ │ ├── IDESchemeActionTestPerformanceMetricSummary-IDELogTestsViewController.h │ │ ├── IDESchemeActionTestSummary-IDELogTestsViewController.h │ │ ├── IDESchemeManagerNavigable.h │ │ ├── IDESchemeManagerNavigableDomainProvider.h │ │ ├── IDESchemeMenuDelegate.h │ │ ├── IDESchemeNavigable.h │ │ ├── IDESchemeOptionMenuController.h │ │ ├── IDESchemeOptionMenuItem-Protocol.h │ │ ├── IDESchemePathControlViewController.h │ │ ├── IDESchemeToolbarBorderView.h │ │ ├── IDESchemeToolbarController.h │ │ ├── IDEScopeableView-Protocol.h │ │ ├── IDEScriptingHack.h │ │ ├── IDEScriptingSelect.h │ │ ├── IDESelection.h │ │ ├── IDESelectionSource-Protocol.h │ │ ├── IDEShareActivityReporter.h │ │ ├── IDESharedLibrariesPopUp.h │ │ ├── IDEShellXPCProcess-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDEShellXPCProcessNavigableItem.h │ │ ├── IDEShowDebuggerAlert.h │ │ ├── IDEShowDebuggerAlertViewController.h │ │ ├── IDEShowEditorAlert.h │ │ ├── IDEShowEditorAlertViewController.h │ │ ├── IDEShowNavigatorAlert.h │ │ ├── IDEShowNavigatorAlertViewController.h │ │ ├── IDEShowTabAlert.h │ │ ├── IDEShowTabAlertViewController.h │ │ ├── IDEShowToolbarAlert.h │ │ ├── IDEShowToolbarAlertViewController.h │ │ ├── IDEShowUtilityAreaAlert.h │ │ ├── IDEShowUtilityAreaAlertViewController.h │ │ ├── IDESigningIdentityActionCellView.h │ │ ├── IDESigningIdentityActionCellViewContents.h │ │ ├── IDESimulateLocationMenuController.h │ │ ├── IDESnapshotItemCellView.h │ │ ├── IDESnapshotProjectItem.h │ │ ├── IDESnapshotsListController.h │ │ ├── IDESoundAlert.h │ │ ├── IDESoundAlertViewController.h │ │ ├── IDESoundBreakpointAction.h │ │ ├── IDESoundMediaResource.h │ │ ├── IDESoundMediaType.h │ │ ├── IDESourceCodeComparisonAnnotationContext.h │ │ ├── IDESourceCodeDocument-Protocol.h │ │ ├── IDESourceCodeFontAndColorItem.h │ │ ├── IDESourceCodeGenerationCompositeResult.h │ │ ├── IDESourceCodeGenerationDestination-Protocol.h │ │ ├── IDESourceCodeGenerationPartialResult.h │ │ ├── IDESourceCodeGenerator.h │ │ ├── IDESourceControlAddAccountWindowController.h │ │ ├── IDESourceControlApplyPatchOperationInfo.h │ │ ├── IDESourceControlBranch-IDESourceControlBranchPropertySupport.h │ │ ├── IDESourceControlBranch-UILevelActions.h │ │ ├── IDESourceControlBranchChooserItem.h │ │ ├── IDESourceControlBranchChooserItemDelegate-Protocol.h │ │ ├── IDESourceControlBranchChooserWindowController.h │ │ ├── IDESourceControlBranchNavigableItem.h │ │ ├── IDESourceControlBranchTableCellView.h │ │ ├── IDESourceControlBranchTableCellView_Legacy.h │ │ ├── IDESourceControlBranchTableDelegate-Protocol.h │ │ ├── IDESourceControlBranchTableDelegate_Legacy-Protocol.h │ │ ├── IDESourceControlBranchTableViewController.h │ │ ├── IDESourceControlBranchTableViewController_Legacy.h │ │ ├── IDESourceControlBranchesNavigableItem.h │ │ ├── IDESourceControlBranchingOperationInfoProtocol-Protocol.h │ │ ├── IDESourceControlCertificateAuthenticator.h │ │ ├── IDESourceControlCommandHandler.h │ │ ├── IDESourceControlCommitViewerComparisonEditorDataSource.h │ │ ├── IDESourceControlCommitViewerNavigatorDataSource.h │ │ ├── IDESourceControlCommitViewerWindowController.h │ │ ├── IDESourceControlCommitWindowController.h │ │ ├── IDESourceControlComparisonEditorDataSource.h │ │ ├── IDESourceControlConflictResolutionController.h │ │ ├── IDESourceControlConflictStatusCell.h │ │ ├── IDESourceControlCreateGitRepositoryOperationInfo.h │ │ ├── IDESourceControlCreateGitRepositoryWindowController.h │ │ ├── IDESourceControlCreateLocalGitRepositoriesOperationInfo.h │ │ ├── IDESourceControlCreateRemoteOperationInfo.h │ │ ├── IDESourceControlCredentialAlertWindowController.h │ │ ├── IDESourceControlCredentialViewController.h │ │ ├── IDESourceControlCredentialViewDelegate-Protocol.h │ │ ├── IDESourceControlCredentialWindowController.h │ │ ├── IDESourceControlCredentialsAssistant.h │ │ ├── IDESourceControlDocumentLocation-IDESourceControlDocumentLocationAdditions.h │ │ ├── IDESourceControlDownloadAssistant.h │ │ ├── IDESourceControlDownloadAssistantContext.h │ │ ├── IDESourceControlDownloadAssistantWindowController.h │ │ ├── IDESourceControlDownloadFinishedAssistant.h │ │ ├── IDESourceControlDownloadStartAssistant.h │ │ ├── IDESourceControlDummyItem-IDESourceControlDummyItemNavigablePropertyAdditions.h │ │ ├── IDESourceControlDummyNavigableItem.h │ │ ├── IDESourceControlFilePickerDelegate-Protocol.h │ │ ├── IDESourceControlFilePickerViewController.h │ │ ├── IDESourceControlFilePickerWindowController.h │ │ ├── IDESourceControlGitConfigViewController.h │ │ ├── IDESourceControlGitRemoteTableCellView.h │ │ ├── IDESourceControlInfoConflictDetector.h │ │ ├── IDESourceControlInspectorStatusProperty.h │ │ ├── IDESourceControlInteractiveCommitController.h │ │ ├── IDESourceControlLegacyRepositoryChooserItem.h │ │ ├── IDESourceControlLocationAssistant.h │ │ ├── IDESourceControlLog.h │ │ ├── IDESourceControlLogDetailViewController.h │ │ ├── IDESourceControlLogFilesChangedView.h │ │ ├── IDESourceControlLogFilesChangedViewDelegate-Protocol.h │ │ ├── IDESourceControlLogItem.h │ │ ├── IDESourceControlLogItemView.h │ │ ├── IDESourceControlLogViewController.h │ │ ├── IDESourceControlManagerNavigableItem.h │ │ ├── IDESourceControlMenuDelegate.h │ │ ├── IDESourceControlMergeBranchChooserWindowController.h │ │ ├── IDESourceControlMergeController.h │ │ ├── IDESourceControlMergeControllerContainer-Protocol.h │ │ ├── IDESourceControlMergeData.h │ │ ├── IDESourceControlMergeDataSource.h │ │ ├── IDESourceControlMergeOperationInfo.h │ │ ├── IDESourceControlMergeWindowController.h │ │ ├── IDESourceControlMiniLogItemView.h │ │ ├── IDESourceControlMiniLogViewController.h │ │ ├── IDESourceControlMultiChooserItem.h │ │ ├── IDESourceControlMultiChooserWindowController.h │ │ ├── IDESourceControlMultiNewBranchWindowController.h │ │ ├── IDESourceControlNameTokenView.h │ │ ├── IDESourceControlNameTokenViewDelegate-Protocol.h │ │ ├── IDESourceControlNavigatorStatusCell.h │ │ ├── IDESourceControlNewBranchChooserWindowController.h │ │ ├── IDESourceControlNewBranchWindowController.h │ │ ├── IDESourceControlNewProjectConfigurationViewController.h │ │ ├── IDESourceControlNonEmptyTextField.h │ │ ├── IDESourceControlOperationInfo.h │ │ ├── IDESourceControlOperationWindow.h │ │ ├── IDESourceControlPatchChooserWindowController.h │ │ ├── IDESourceControlPatchDataSource.h │ │ ├── IDESourceControlPerson.h │ │ ├── IDESourceControlPersonManager.h │ │ ├── IDESourceControlPersonPopover.h │ │ ├── IDESourceControlPreflightAssistant.h │ │ ├── IDESourceControlPrefsPaneController.h │ │ ├── IDESourceControlProgressAssistant.h │ │ ├── IDESourceControlProject-Additions.h │ │ ├── IDESourceControlPullOperationInfo.h │ │ ├── IDESourceControlPushOperationInfo.h │ │ ├── IDESourceControlRepository-IDESourceControlRepositoryNavigablePropertyAdditions.h │ │ ├── IDESourceControlRepository-UILevelActions.h │ │ ├── IDESourceControlRepositoryChooserItem.h │ │ ├── IDESourceControlRepositoryChooserWindowController.h │ │ ├── IDESourceControlRepositoryNavigableItem.h │ │ ├── IDESourceControlRepositoryOperationWindowController.h │ │ ├── IDESourceControlRepositoryStatusView.h │ │ ├── IDESourceControlRepositoryStatusViewController.h │ │ ├── IDESourceControlRevertOperationInfo.h │ │ ├── IDESourceControlReviewFilesDataSource.h │ │ ├── IDESourceControlReviewFilesWindowController.h │ │ ├── IDESourceControlRevision-IDESourceControlRevisionPropertySupport.h │ │ ├── IDESourceControlSVNConfigViewController.h │ │ ├── IDESourceControlServerRemoteAlreadyExistsWindowController.h │ │ ├── IDESourceControlStructureViewController.h │ │ ├── IDESourceControlSwitchBranchChooserWindowController.h │ │ ├── IDESourceControlSwitchOperationInfo.h │ │ ├── IDESourceControlTree-IDESourceControlTreePropertyAdditions.h │ │ ├── IDESourceControlTreeGroup-IDESourceControlTreeGroupPropertyAdditions.h │ │ ├── IDESourceControlTreeGroup-UILevelActions.h │ │ ├── IDESourceControlTreeItem-IDESourceControlTreeItemPropertyAdditions.h │ │ ├── IDESourceControlTreeItemRowView.h │ │ ├── IDESourceControlUIHandler.h │ │ ├── IDESourceControlUpdateDataSource.h │ │ ├── IDESourceControlUpdateOperationInfo.h │ │ ├── IDESourceControlUpdateWindowController.h │ │ ├── IDESourceControlUpgradeWindowController.h │ │ ├── IDESourceControlVIP.h │ │ ├── IDESourceControlWindowController-Protocol.h │ │ ├── IDESourceControlWorkingCopyConfiguration-IDESourceControlWorkingCopyConfigurationPropertyAdditions.h │ │ ├── IDESourceControlWorkingCopyCreationChooserWindowController.h │ │ ├── IDESourceControlWorkingCopyEditWindowController.h │ │ ├── IDESourceControlWorkingCopyMenuObject.h │ │ ├── IDESourceControlWorkingTree-IDESourceControlWorkingTreePropertyAdditions.h │ │ ├── IDESourceControlWorkingTreeGroup-IDEBinaryConflictResolution.h │ │ ├── IDESourceControlWorkingTreeGroup-IDESourceControlDocumentLocationAdditions.h │ │ ├── IDESourceControlWorkingTreeGroup-IDESourceControlTreeGroupPropertyAdditions.h │ │ ├── IDESourceControlWorkingTreeItem-IDEBinaryConflictResolution.h │ │ ├── IDESourceControlWorkingTreeItem-IDESourceControlDocumentLocationAdditions.h │ │ ├── IDESourceControlWorkingTreeItem-IDESourceControlTreeItemPropertyAdditions.h │ │ ├── IDESourceControlWorkingTreeItemHolder-IDESourceControlWorkingTreeItemHolderNavigablePropertyAdditions.h │ │ ├── IDESourceControlWorkingTreeItemHolderNavigableItem.h │ │ ├── IDESourceControlWorkingTreeItemNavigableItem.h │ │ ├── IDESourceControlWorkingTreeNavigableItem.h │ │ ├── IDESourceControlWorkspaceConfigNavigator.h │ │ ├── IDESourceControlWorkspaceHistoryWindowController.h │ │ ├── IDESourceControlWorkspaceMonitor-IDESourceControlWorkspaceUIHandler.h │ │ ├── IDESourceControlWorkspaceMonitor-NavigableItems.h │ │ ├── IDESourceControlWorkspaceObjects.h │ │ ├── IDESourceControlWorkspaceUIHandler.h │ │ ├── IDESourceControlWorkspaceUIHandlerProtocol-Protocol.h │ │ ├── IDESourceEditorFontAndColorItemProvider.h │ │ ├── IDESourceExpressionSource-Protocol.h │ │ ├── IDESpecialPasteboardController.h │ │ ├── IDESpecialPasteboardHandler.h │ │ ├── IDESpeechAlert.h │ │ ├── IDESpeechAlertViewController.h │ │ ├── IDESpinnerLayer.h │ │ ├── IDESplitViewDebugArea.h │ │ ├── IDEStackFrame-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDEStackFrameDebugBarContentProvider.h │ │ ├── IDEStandardTestable-IDETestNavigatorAdditions.h │ │ ├── IDEStepGradientImageButton.h │ │ ├── IDESteppingControlsDebugBarContentProvider.h │ │ ├── IDEStringLengthGreaterThanZeroTransformer.h │ │ ├── IDEStringWrapper.h │ │ ├── IDEStructureEditing-Protocol.h │ │ ├── IDEStructureEditingAssistantContext.h │ │ ├── IDEStructureEditingContext-Protocol.h │ │ ├── IDEStructureEditingDraggingSource-Protocol.h │ │ ├── IDEStructureEditingDropTarget-Protocol.h │ │ ├── IDEStructureEditingGroupingTarget-Protocol.h │ │ ├── IDEStructureEditingRemoveSubitemsTarget-Protocol.h │ │ ├── IDEStructureEditingTarget-Protocol.h │ │ ├── IDEStructureEditingWorkspaceTabContext-Protocol.h │ │ ├── IDEStructureNavigator.h │ │ ├── IDESupportStructureEditingValueTransformer.h │ │ ├── IDESwiftMigrationAssistantContext.h │ │ ├── IDESwiftMigrationGeneratingPreviewAssistant.h │ │ ├── IDESwiftMigrationOverviewAssistant.h │ │ ├── IDESwiftMigrationPlaygroundTarget.h │ │ ├── IDESwiftMigrationReviewChangesAssistant.h │ │ ├── IDESwiftMigrationReviewChangesFile.h │ │ ├── IDESwiftMigrationTarget.h │ │ ├── IDESwiftMigrationTargetChooserAssistant.h │ │ ├── IDESwiftMigrationTargetChooserFolderItem.h │ │ ├── IDESwiftMigrationTargetChooserItem.h │ │ ├── IDESwiftMigrationTargetChooserTargetItem.h │ │ ├── IDESwiftMigrationWarningAssistant.h │ │ ├── IDESwiftMigrator-Protocol.h │ │ ├── IDESymbolNavigator.h │ │ ├── IDESymbolNavigatorCategorySymbol.h │ │ ├── IDESymbolNavigatorClassSymbol.h │ │ ├── IDESymbolNavigatorClassesGroup.h │ │ ├── IDESymbolNavigatorContainerSymbol.h │ │ ├── IDESymbolNavigatorEnumsGroup.h │ │ ├── IDESymbolNavigatorFilterPredicate.h │ │ ├── IDESymbolNavigatorFunctionsGroup.h │ │ ├── IDESymbolNavigatorGlobalsGroup.h │ │ ├── IDESymbolNavigatorGroup.h │ │ ├── IDESymbolNavigatorGroupNavigableItem.h │ │ ├── IDESymbolNavigatorOutlineView.h │ │ ├── IDESymbolNavigatorProtocolSymbol.h │ │ ├── IDESymbolNavigatorProtocolsGroup.h │ │ ├── IDESymbolNavigatorRootGroup.h │ │ ├── IDESymbolNavigatorStructsGroup.h │ │ ├── IDESymbolNavigatorSymbol.h │ │ ├── IDESymbolNavigatorTypesGroup.h │ │ ├── IDESymbolNavigatorUnionsGroup.h │ │ ├── IDETagToken.h │ │ ├── IDETagTokenFieldCell.h │ │ ├── IDETargetEditorSectionViewController.h │ │ ├── IDETeamDescription.h │ │ ├── IDETemplate-IDEKitAdditions.h │ │ ├── IDETemplateAssistantContext.h │ │ ├── IDETemplateCategory-IDEKitAdditions.h │ │ ├── IDETemplateChooserAssistant.h │ │ ├── IDETemplateChooserSelectionView.h │ │ ├── IDETemplateChooserTextField.h │ │ ├── IDETemplateChooserTextFieldCell.h │ │ ├── IDETemplateChooserTileView.h │ │ ├── IDETemplateCompletionAssistant.h │ │ ├── IDETemplateInstantiationAssistant.h │ │ ├── IDETemplateInstantiationContext-IDEKitAdditions.h │ │ ├── IDETemplateKind-IDEKitAdditions.h │ │ ├── IDETemplateOptionsAssistant.h │ │ ├── IDETemplateOptionsTextField.h │ │ ├── IDETemplateOptionsTextFieldCell.h │ │ ├── IDETemplateOptionsTextView.h │ │ ├── IDETemplateOptionsView.h │ │ ├── IDETemplateSection-IDEKitAdditions.h │ │ ├── IDETemplateSupportingNavigator-Protocol.h │ │ ├── IDETest-IDETestNavigatorAdditions.h │ │ ├── IDETestAnnotation_SharedTests_PerfMetric.h │ │ ├── IDETestContainer-Protocol.h │ │ ├── IDETestIssueErrorAnnotation.h │ │ ├── IDETestManagerUITestingPermissionSheetDelegate-Protocol.h │ │ ├── IDETestNavigator.h │ │ ├── IDETestNavigatorModel.h │ │ ├── IDETestObserver-Protocol.h │ │ ├── IDETestReportActivitiesTableCellView.h │ │ ├── IDETestReportActivityDocumentLocation.h │ │ ├── IDETestReportActivityRemoteScreenShotHelper.h │ │ ├── IDETestReportActivityScreenShotHelper.h │ │ ├── IDETestReportAssertionPopoverViewController.h │ │ ├── IDETestReportBaselineUpdateController.h │ │ ├── IDETestReportBatchBaselineUpdateWindow.h │ │ ├── IDETestReportCopyHelper.h │ │ ├── IDETestReportDeviceImageUtilities.h │ │ ├── IDETestReportPerfMetricBadgePopoverViewController.h │ │ ├── IDETestReportPerfMetricIterationsGraphView.h │ │ ├── IDETestReportPopoverGraphDetailDividerView.h │ │ ├── IDETestReportRemoteActivityAssetDownloadPopoverViewController.h │ │ ├── IDETestReportResultsColors.h │ │ ├── IDETestReportResultsHorizontalDividerLineView.h │ │ ├── IDETestReportResultsTestTableRowView.h │ │ ├── IDETestReportTestRunFetcher.h │ │ ├── IDETestReportViewController.h │ │ ├── IDETestReport_Base-Protocol.h │ │ ├── IDETestReport_Device-Protocol.h │ │ ├── IDETestReport_FailureSummary-Protocol.h │ │ ├── IDETestReport_PerfMetric-Protocol.h │ │ ├── IDETestReport_RemoteAsset-Protocol.h │ │ ├── IDETestReport_RootObject-Protocol.h │ │ ├── IDETestReport_Test-Protocol.h │ │ ├── IDETestReport_TestActivity-Protocol.h │ │ ├── IDETestReport_TestGroup-Protocol.h │ │ ├── IDETestReport_TestRun-Protocol.h │ │ ├── IDETestRunPhaseHiddenPopUpButtonCell.h │ │ ├── IDETestRunPhaseSheetController.h │ │ ├── IDETestTargetSelectorViewController.h │ │ ├── IDETestable-Protocol.h │ │ ├── IDETestablesObserver-Protocol.h │ │ ├── IDETestingActivityReporter.h │ │ ├── IDETestingCommands.h │ │ ├── IDETestingHelper.h │ │ ├── IDETestingHelperTestableProviderWrapper.h │ │ ├── IDETestingHelperTestableWrapper.h │ │ ├── IDETestingSelection-Protocol.h │ │ ├── IDETestsInTestableObserver-Protocol.h │ │ ├── IDETextDocumentFactoryDocument.h │ │ ├── IDETextFieldActionFilter.h │ │ ├── IDETextFieldActionFilterDelegate-Protocol.h │ │ ├── IDETextIndexActivityReporter.h │ │ ├── IDETextKeyBinding.h │ │ ├── IDETextKeyBindingSet.h │ │ ├── IDEThread-IDEKitDebuggerNavigableAdditions.h │ │ ├── IDETimedInvalidatableObjectCache.h │ │ ├── IDEToolbarDelegate.h │ │ ├── IDEToolbarItemProvider-Protocol.h │ │ ├── IDEToolbarItemProxy.h │ │ ├── IDEToolbarManager.h │ │ ├── IDEToolbarStopButtonViewController.h │ │ ├── IDEUIRecordingActivityReporter.h │ │ ├── IDEUIRecordingDebugBarContentProvider.h │ │ ├── IDEUIRecordingManager.h │ │ ├── IDEUITestingTCCPermissionWindowController.h │ │ ├── IDEUITestingTargetSelectorViewController.h │ │ ├── IDEURLHandler-Protocol.h │ │ ├── IDEUnitTestsModernizationAssistantContext.h │ │ ├── IDEUnitTestsModernizationGeneratingPreviewAssistant.h │ │ ├── IDEUnitTestsModernizationOverviewAssistant.h │ │ ├── IDEUnitTestsModernizationReviewChangesAssistant.h │ │ ├── IDEUnitTestsModernizationReviewChangesFile.h │ │ ├── IDEUnitTestsModernizationTarget.h │ │ ├── IDEUnitTestsModernizationTargetChooserAssistant.h │ │ ├── IDEUnitTestsModernizationTargetChooserItem.h │ │ ├── IDEUnitTestsModernizationTargetChooserTargetItem.h │ │ ├── IDEUpgradeTableColumn.h │ │ ├── IDEUpgradeTask-IDEUpgradeTaskNavItemSupport.h │ │ ├── IDEUpgradeTaskGroup.h │ │ ├── IDEUpgradeTaskWindowController.h │ │ ├── IDEUtilitiesMenuDelegate.h │ │ ├── IDEUtilityArea.h │ │ ├── IDEUtilityAreaDVTStackView_ML.h │ │ ├── IDEUtilityDisclosureHeaderView.h │ │ ├── IDEUtilityDisclosureView.h │ │ ├── IDEUtilityPlaceholderView.h │ │ ├── IDEUtilitySlice.h │ │ ├── IDEVariableViewRootNode.h │ │ ├── IDEVariablesView.h │ │ ├── IDEVariablesViewCell.h │ │ ├── IDEVariablesViewContextState.h │ │ ├── IDEVariablesViewNode.h │ │ ├── IDEVariablesViewNodeFormatter.h │ │ ├── IDEVariablesViewOutlineView.h │ │ ├── IDEVariablesViewPopUpButtonCell.h │ │ ├── IDEVariablesViewQuickLookPopover.h │ │ ├── IDEVariablesViewQuickLookProvider-Protocol.h │ │ ├── IDEVariablesViewStateManager.h │ │ ├── IDEVersionedFileManagerDelegate-Protocol.h │ │ ├── IDEViewController.h │ │ ├── IDEViewDebuggingMenuDelegate.h │ │ ├── IDEViewDebuggingOptionsViewController.h │ │ ├── IDEWelcomeWindow.h │ │ ├── IDEWelcomeWindowAuthorizationHelper.h │ │ ├── IDEWelcomeWindowController.h │ │ ├── IDEWelcomeWindowHighlightButton.h │ │ ├── IDEWelcomeWindowHighlightButtonCell.h │ │ ├── IDEWelcomeWindowLozengeView.h │ │ ├── IDEWelcomeWindowProjectURLCell.h │ │ ├── IDEWelcomeWindowTableCellView.h │ │ ├── IDEWindowMenuController.h │ │ ├── IDEWorkingDirectoryOptionsController.h │ │ ├── IDEWorkspace-IDEKitAdditions.h │ │ ├── IDEWorkspace-IDEKitWorkspacePropertyAdditions.h │ │ ├── IDEWorkspace-IDEWorkspaceToolbarItemProviderAdditions.h │ │ ├── IDEWorkspaceActivityReporter.h │ │ ├── IDEWorkspaceComparisonEditorDataSource-Protocol.h │ │ ├── IDEWorkspaceDelegate-Protocol.h │ │ ├── IDEWorkspaceDocument.h │ │ ├── IDEWorkspaceDocumentProvider-Protocol.h │ │ ├── IDEWorkspaceTabController.h │ │ ├── IDEWorkspaceTabControllerLayoutTree.h │ │ ├── IDEWorkspaceTabControllerLayoutTreeNode.h │ │ ├── IDEWorkspaceToolbarItemProvider.h │ │ ├── IDEWorkspaceUserSettingsSheetController.h │ │ ├── IDEWorkspaceWindow.h │ │ ├── IDEWorkspaceWindowController.h │ │ ├── IDEWorkspaceWrappingContainer-Protocol.h │ │ ├── IDEXcodeSelectHelper.h │ │ ├── IDEXcodeSelectableXcode.h │ │ ├── IDEXcodeServer-IDEAccountPrefsPaneAccount.h │ │ ├── IDEXcodeServerLegacyBot.h │ │ ├── IDEXcodeServerLegacySupport.h │ │ ├── IDE_IBFlippedView.h │ │ ├── IDE_StorageForCGFloat.h │ │ ├── IDEiCloudEntitlementsProcessorViewController.h │ │ ├── NSAlertDelegate-Protocol.h │ │ ├── NSAnimationDelegate-Protocol.h │ │ ├── NSAppleEventManager-DVTAssertionOverrides.h │ │ ├── NSApplication-IDETemplateTesterExtensions.h │ │ ├── NSApplication-NSApplicationScripting.h │ │ ├── NSApplicationDelegate-Protocol.h │ │ ├── NSArray-DVTNSArrayAdditionsFilterNull.h │ │ ├── NSArrayController-IDEInspectorContentControllerConformance.h │ │ ├── NSCacheDelegate-Protocol.h │ │ ├── NSCell-DVTOutlineViewCellDelegation.h │ │ ├── NSCoding-Protocol.h │ │ ├── NSComboBoxDataSource-Protocol.h │ │ ├── NSComboBoxDelegate-Protocol.h │ │ ├── NSControl-DVTNSViewAdditions.h │ │ ├── NSControlTextEditingDelegate-Protocol.h │ │ ├── NSCopying-Protocol.h │ │ ├── NSDictionary-NSDictionaryScripting.h │ │ ├── NSDocument-IDENSDocumentAdditions.h │ │ ├── NSDocument-NSDocumentScripting.h │ │ ├── NSDraggingSource-Protocol.h │ │ ├── NSError-IDEDistributionErrorAdditions.h │ │ ├── NSFastEnumeration-Protocol.h │ │ ├── NSFileManager-IDEBinaryConflictResolution.h │ │ ├── NSFileManager-IDEOpenQuicklyAdditions.h │ │ ├── NSImage-IDENSImageAdditions.h │ │ ├── NSKeyedUnarchiverDelegate-Protocol.h │ │ ├── NSLayoutManagerDelegate-Protocol.h │ │ ├── NSMenuDelegate-Protocol.h │ │ ├── NSMenuItem-IDERunDestinationMenuItemViewState.h │ │ ├── NSMenuItem-IDEWindowMenuControllerAdditions.h │ │ ├── NSMutableArray-IDEConfigurableDataNodeArrayExtensions.h │ │ ├── NSObject-AllowAlwaysCallingSuper.h │ │ ├── NSObject-IDEModelObjectConformanceString.h │ │ ├── NSObject-Protocol.h │ │ ├── NSOpenSavePanelDelegate-Protocol.h │ │ ├── NSOutlineViewDataSource-Protocol.h │ │ ├── NSOutlineViewDelegate-Protocol.h │ │ ├── NSPasteboardReading-Protocol.h │ │ ├── NSPasteboardWriting-Protocol.h │ │ ├── NSPathCellDelegate-Protocol.h │ │ ├── NSPathControlDelegate-Protocol.h │ │ ├── NSPopoverDelegate-Protocol.h │ │ ├── NSRuleEditorDelegate-Protocol.h │ │ ├── NSSearchFieldDelegate-Protocol.h │ │ ├── NSSharingServicePickerDelegate-Protocol.h │ │ ├── NSSoundDelegate-Protocol.h │ │ ├── NSSpeechSynthesizerDelegate-Protocol.h │ │ ├── NSSplitViewDelegate-Protocol.h │ │ ├── NSString-DVTXMLArchiving.h │ │ ├── NSTableViewDataSource-Protocol.h │ │ ├── NSTableViewDelegate-Protocol.h │ │ ├── NSTextDelegate-Protocol.h │ │ ├── NSTextFieldDelegate-Protocol.h │ │ ├── NSTextViewDelegate-Protocol.h │ │ ├── NSTokenFieldDelegate-Protocol.h │ │ ├── NSToolbarDelegate-Protocol.h │ │ ├── NSTreeController-IDELogTreeControllerUtilities.h │ │ ├── NSTreeNode-IDETreeNodeUtilities.h │ │ ├── NSURL-IDEKitClassAdditions.h │ │ ├── NSURL-IDEKitURLPropertyAdditions.h │ │ ├── NSURL-NSURL_IDEModelObjectTypeIdentifierAdditions.h │ │ ├── NSURLSessionDelegate-Protocol.h │ │ ├── NSURLSessionDownloadDelegate-Protocol.h │ │ ├── NSURLSessionTaskDelegate-Protocol.h │ │ ├── NSUserInterfaceValidations-Protocol.h │ │ ├── NSValidatedUserInterfaceItem-Protocol.h │ │ ├── NSView-IBViewAdditions.h │ │ ├── NSView-IDEViewControllerAutomaticInvalidation.h │ │ ├── NSWindow-IBResizingAdditions.h │ │ ├── NSWindowDelegate-Protocol.h │ │ ├── NSWindowRestoration-Protocol.h │ │ ├── QLPreviewPanelDataSource-Protocol.h │ │ ├── RVAuthorImageView.h │ │ ├── RVPeoplePickerDelegate-Protocol.h │ │ ├── XCBuildIssueBaseClassAdapter.h │ │ ├── XCBuildIssueCategoryAdapter.h │ │ ├── XCBuildIssueOccurrenceAdapter.h │ │ ├── XCBuildIssueOccurrenceSubStepAdapter.h │ │ ├── XCBuildResultAdapter.h │ │ ├── XCBuildResultsCell.h │ │ ├── XCBuildResultsOutlineView.h │ │ ├── XCBuildResultsTextLayout.h │ │ ├── XCEColoredRect.h │ │ ├── XCEDataNodeAdapterP-Protocol.h │ │ ├── XCEForwardingCell.h │ │ ├── XCETextLayout.h │ │ ├── XCETextLayoutTextStorage.h │ │ ├── XCLogAnalyzerControlFlowStepAdapter.h │ │ ├── XCLogAnalyzerEventStepAdapter.h │ │ ├── XCLogAnalyzerResultAdapter.h │ │ ├── XCLogAnalyzerStepAdapter.h │ │ ├── XCLogAnalyzerWarningAdapter.h │ │ ├── XCLogErrorAdapter.h │ │ ├── XCLogHeaderInclusionAdapter.h │ │ ├── XCLogInvocationAdapter.h │ │ ├── XCLogItemAdapter.h │ │ ├── XCLogItemCounts.h │ │ ├── XCLogMessageAdapter.h │ │ ├── XCLogNoticeAdapter.h │ │ ├── XCLogProblemAdapter.h │ │ ├── XCLogSectionAdapter.h │ │ ├── XCLogSummaryItemAdapter.h │ │ ├── XCLogTargetHeadingAdapter.h │ │ ├── XCLogTestFailureAdapter.h │ │ ├── XCLogUnitTestAdapter.h │ │ ├── XCLogWarningAdapter.h │ │ ├── XCTranscriptTextView.h │ │ ├── Xcode3LocalizationFileNavigableItem.h │ │ ├── Xcode3LocalizationGroup.h │ │ ├── Xcode3LocalizationGroupNavigableItem.h │ │ ├── Xcode3LocalizationIssueNavigableItem.h │ │ ├── _IDEAccountPrefsMultipleSelectionDeleteOperation.h │ │ ├── _IDEActivityPopUpContainerLayer.h │ │ ├── _IDEActivityViewControllerToolbarItem.h │ │ ├── _IDEActivityViewToolbarViewController.h │ │ ├── _IDEApplicationControllerMenuDelegateForwarder.h │ │ ├── _IDEBatchFindPrivateClassForFindingBundle.h │ │ ├── _IDEBatchFindScopeArchive.h │ │ ├── _IDEBotsURLSpotlightHandler.h │ │ ├── _IDECapsuleListViewObjectPasteboardWriter.h │ │ ├── _IDECodeSnippetLibraryAllPlatformsPlaceholder.h │ │ ├── _IDEContainerItemNavigableItemExtraInfo.h │ │ ├── _IDEContinuousIntegrationManagerErrorRecoveryAttempter.h │ │ ├── _IDECoverageAggregatedDevice.h │ │ ├── _IDECoverageChangeColumnTableCellView.h │ │ ├── _IDECoverageDividerLine.h │ │ ├── _IDECoverageNameTableCellView.h │ │ ├── _IDECoverageProcessedRange.h │ │ ├── _IDEDistirubtionSigningAssetsStepCodesignableDevice.h │ │ ├── _IDEDistributionMethodGroupUIWrapper.h │ │ ├── _IDEDistributionMethodTableCellView.h │ │ ├── _IDEDistributionMethodUIWrapper.h │ │ ├── _IDEDocumentControllerCloseAllContext.h │ │ ├── _IDEEditorStepperArrowButton.h │ │ ├── _IDEEditorStepperTextCell.h │ │ ├── _IDEEntitlementsKeyValuePairProxy.h │ │ ├── _IDEGeniusResultsContext.h │ │ ├── _IDEIndexToBoolValueTransformer.h │ │ ├── _IDEIssueDocumentURL.h │ │ ├── _IDEKeyBindingPrefsPaneTabBorderView.h │ │ ├── _IDEKitPrivateClassForFindingBundle.h │ │ ├── _IDENavigableItemExtraInfo.h │ │ ├── _IDENavigatorOutlineViewDataSource.h │ │ ├── _IDEOpenRequest.h │ │ ├── _IDEOutlineViewGroupInfo.h │ │ ├── _IDEPathAndFileType.h │ │ ├── _IDEProgressSearchFieldCell.h │ │ ├── _IDEProgressSearchSeparatorCell.h │ │ ├── _IDEProgressSearchSuggestionsWindowContentView.h │ │ ├── _IDEReadOnlyItemsManagerContext.h │ │ ├── _IDESearchFieldToolbarViewController.h │ │ ├── _IDESourceControlBranchesLocation.h │ │ ├── _IDESourceControlComparisonEditorDataSourceInvalidationToken.h │ │ ├── _IDESourceControlInfoConflictDetectorCancellationToken.h │ │ ├── _IDESourceControlOperationInfoInvalidationToken.h │ │ ├── _IDEStructureNavigatorAddFilesOpenPanelDelegate.h │ │ ├── _IDESwipeAnimationHostView.h │ │ ├── _IDETestNavigatorStatusView.h │ │ ├── _IDETestReportActivities_TableCellView.h │ │ ├── _IDETestReportAssertionFailureTableRowView.h │ │ ├── _IDETestReportAssertionsOutlineObject.h │ │ ├── _IDETestReportJumpButtonTrackingView.h │ │ ├── _IDETestReportPerfMetricBarView.h │ │ ├── _IDETestReportPerfMetricIterationNumberView.h │ │ ├── _IDETestReportPerfMetricIterationsView.h │ │ ├── _IDETestReportResultsViewControllerContentView.h │ │ ├── _IDETestReportTestGroupHeaderSeparatorAttachmentCell.h │ │ ├── _IDETestReportTestRunPickerMenuItemPayload.h │ │ ├── _IDETestReportTestRunPickerRow.h │ │ ├── _IDETestReportTestRunPickerTableCellView.h │ │ ├── _IDETestReportTestTextFieldCell.h │ │ ├── _IDETestReportsDeviceStatusTableCellView.h │ │ ├── _IDETestReportsDeviceStatusTableCellViewTextField.h │ │ ├── _IDETestReportsPerfMetricTableCellView.h │ │ ├── _IDETestReportsStatusTableCellView.h │ │ ├── _IDETestReportsTestTableCellView.h │ │ ├── _IDETestReportsTestTargetTableCellView.h │ │ ├── _IDETestsReportOutlineView.h │ │ ├── _IDETmpSplitView.h │ │ ├── _IDEUtilitySliceData.h │ │ ├── _IDEUtilitySliceExtension.h │ │ ├── _IDEWindowFullScreenSavedDebuggerTransitionValues.h │ │ ├── _IDEWorkspaceDocumentInternalContextWrapper.h │ │ ├── _IDEWorkspacePartsVisibilityToolbarViewController.h │ │ ├── _Xcode3LocalizationNoTargetLanguages.h │ │ ├── _Xcode3LocalizationTargetLanguage.h │ │ ├── _Xcode3LocalizationWithTargetLanguages.h │ │ ├── __ARCLiteIndexedSubscripting__-Protocol.h │ │ ├── __ARCLiteKeyedSubscripting__-Protocol.h │ │ └── __IDENSImageAdditionsClass.h │ │ └── Info.plist ├── Multiplex-Info.plist ├── Multiplex-Prefix.pch ├── MultiplexPlugin.h ├── MultiplexPlugin.m ├── Utilities │ └── MPXGeometry.h └── en.lproj │ └── InfoPlist.strings ├── Podfile ├── Podfile.lock ├── Readme.md └── Scripts ├── compatibility-update.sh ├── dump-classes.py └── install.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/.gitignore -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/License -------------------------------------------------------------------------------- /Meta/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Meta/Demo.gif -------------------------------------------------------------------------------- /Meta/Installer.pmdoc/01multiplex-contents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Meta/Installer.pmdoc/01multiplex-contents.xml -------------------------------------------------------------------------------- /Meta/Installer.pmdoc/01multiplex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Meta/Installer.pmdoc/01multiplex.xml -------------------------------------------------------------------------------- /Meta/Installer.pmdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Meta/Installer.pmdoc/index.xml -------------------------------------------------------------------------------- /Multiplex.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Multiplex.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Multiplex.xcodeproj/xcshareddata/xcschemes/Multiplex.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex.xcodeproj/xcshareddata/xcschemes/Multiplex.xcscheme -------------------------------------------------------------------------------- /Multiplex.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXArrowKeyMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXArrowKeyMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXArrowKeyMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXArrowKeyMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXAutocompletion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXAutocompletion.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXAutocompletion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXAutocompletion.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXClipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXClipboard.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXClipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXClipboard.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXDocumentMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXDocumentMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXDocumentMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXDocumentMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXEditorExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXEditorExtensions.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXEditorExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXEditorExtensions.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXIndentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXIndentation.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXIndentation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXIndentation.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXLineMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXLineMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXLineMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXLineMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXMouseEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXMouseEvents.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXMouseEvents.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXMouseEvents.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXParagraphMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXParagraphMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXParagraphMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXParagraphMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXQuickAddNext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXQuickAddNext.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXQuickAddNext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXQuickAddNext.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXSwizzling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXSwizzling.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXSwizzling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXSwizzling.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXTabMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXTabMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXTabMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXTabMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXTokenizedEditing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXTokenizedEditing.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXTokenizedEditing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXTokenizedEditing.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXWhitespaceTrimming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXWhitespaceTrimming.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXWhitespaceTrimming.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXWhitespaceTrimming.m -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXWordMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXWordMovement.h -------------------------------------------------------------------------------- /Multiplex/Categories/DVTSourceTextView+MPXWordMovement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/DVTSourceTextView+MPXWordMovement.m -------------------------------------------------------------------------------- /Multiplex/Categories/IDEEditorCoordinator+MPXJumpWorkaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/IDEEditorCoordinator+MPXJumpWorkaround.h -------------------------------------------------------------------------------- /Multiplex/Categories/IDEEditorCoordinator+MPXJumpWorkaround.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Categories/IDEEditorCoordinator+MPXJumpWorkaround.m -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelection.h -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelection.m -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionCore-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionCore-Prefix.pch -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionCore.h -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionManager.h -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionManager.m -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionMutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionMutation.h -------------------------------------------------------------------------------- /Multiplex/Classes/MPXSelectionMutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXSelectionMutation.m -------------------------------------------------------------------------------- /Multiplex/Classes/MPXTextViewSelectionDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXTextViewSelectionDecorator.h -------------------------------------------------------------------------------- /Multiplex/Classes/MPXTextViewSelectionDecorator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Classes/MPXTextViewSelectionDecorator.m -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/CDStructures.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTAppIDFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTAppIDFeatures.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTAppIDRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTAppIDRecord.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTArchitecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTArchitecture.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBlockScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBlockScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBloomFilter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBuildVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTBuildVersion.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTByteBuffer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTCharStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTCharStream.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTConsoleLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTConsoleLogger.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDevice.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceLocator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceRecord.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceService.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDeviceType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDiffContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDiffContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDispatchLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDispatchLock.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDownloadable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTDownloadable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTExtension.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileDataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileDataType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileLogger.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFilePath.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFileWrapper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFindResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFindResult.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFuture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTFuture.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTHTMLScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTHTMLScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLocalComputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLocalComputer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLocale.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLogAspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLogAspect.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTLogger.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMTReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMTReport.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMessageTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMessageTrace.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMixIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTMixIn.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelObject.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelTree.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelTreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTModelTreeNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTNumberScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTNumberScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOMCRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOMCRecord.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOSVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOSVersion.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOneShotBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOneShotBlock.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTOperation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPinger.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPipe.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlatform.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugIn.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugInLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugInLocator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugInManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPlugInManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPythonScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTPythonScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRangeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRangeArray.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRegExScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRegExScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRegistry.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRoleRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRoleRecord.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRuleScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRuleScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRunLoopToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTRunLoopToken.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSDK.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTScannerRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTScannerRule.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSearchPath.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSemaphore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceModel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceScanner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceTokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSourceTokens.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStateToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStateToken.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStreamingZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStreamingZip.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStringBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTStringBuffer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSysmonBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSysmonBridge.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSystemEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTSystemEvents.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTask.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTeamRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTeamRecord.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTextFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTTextFinder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolchain.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolsInfo.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolsVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTToolsVersion.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTVersion.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTXMLArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTXMLArchiver.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTXMLUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTFoundation/DVTXMLUnarchiver.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/Animation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/AnimationParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/AnimationParameters.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/CDStructures.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractColorPicker.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractGraphLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractGraphLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractLibraryGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAbstractLibraryGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotatingTypesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotatingTypesetter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAnnotationProvider.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTApplication.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetAndGroupSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetAndGroupSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetDetailTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetDetailTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTAssetDetailView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBarBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBarBackground.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBasicDevice-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBasicDevice-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBasicFindBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBasicFindBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBezelAlertPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBezelAlertPanel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBezelAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBezelAlertView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingHelper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingInfo.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBindingToken.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBorderedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTBorderedView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonImageTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonImageTitleCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTButtonTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCachedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCachedImageView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCancellable-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCancellable-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCapacitySegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCapacitySegment.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCapacityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCapacityView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTChoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTChoice.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTChooserView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTChooserView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCircularCapacityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCircularCapacityView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickAvoidingLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickAvoidingLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickableLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickableLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickableTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClickableTextLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClippedTabsIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTClippedTabsIndicator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColorSwatchLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColorSwatchLabel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColorSwatchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColorSwatchView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColoredSpinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTColoredSpinner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTComparisonScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTComparisonScroller.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTComparisonSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTComparisonSplitView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCompletingTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCompletingTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCopyTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCopyTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCopyTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTCopyTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDelayedMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDelayedMenuButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDevice-KitAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDevice-KitAdditions.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDeviceTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDeviceTableCellView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDiffContextThreeWay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDiffContextThreeWay.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDiffSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDiffSession.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDisclosureHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDisclosureHeaderView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDisclosureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDisclosureView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDragDeleteTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDragDeleteTarget.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDragManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDragManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDraggedImageState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDraggedImageState.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDraggingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDraggingContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDynamicTableRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDynamicTableRowView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDynamicTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTDynamicTableView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTEditor-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTEditor-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFavoriteTableRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFavoriteTableRowView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFileIconCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFileIconCreator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilePathField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilePathField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilePathFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilePathFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilteringMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFilteringMenu.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBarOptionsCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBarOptionsCtrl.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBarTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindBarTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPattern.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPatternComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPatternComboBox.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPatternTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFindPatternTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFlatButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFlatButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFlatPopUpButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFlatPopUpButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingLayoutManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingTokenType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingTokenType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingTypesetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFoldingTypesetter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontAndColorTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontAndColorTheme.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontDataSource.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTFontValue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGauge.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGradientImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGradientImageButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraph.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraphLayer-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraphLayer-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGraphStyle.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGroupedTileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTGroupedTileView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHUDPopUpWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHelperApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTHelperApplication.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIconSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIconSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIconSetComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIconSetComponent.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextColumn.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImageAndTextLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImagePopUpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImagePopUpButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImagePopUpButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTImagePopUpButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIncrementalFindBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTIncrementalFindBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTInfoPlistValueCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTInfoPlistValueCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerHostingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerHostingView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerImageExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayerImageExporter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayoutManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayoutView_ML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLayoutView_ML.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibrary.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryAsset.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryAssetView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryAssetView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLibraryGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLineGraphLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLineGraphLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLineGraphLayerStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLineGraphLayerStyle.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLinkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLinkView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLozengeTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTLozengeTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMarkedScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMarkedScroller.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMenuBuilder-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMenuBuilder-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMergedSortedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMergedSortedArray.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMessageBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMessageBubbleView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterTheme.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterThreshold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterThreshold.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterValue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMeterView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMockupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTMockupViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTNewTabButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTNewTabButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTNewTabButtonOldStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTNewTabButtonOldStyle.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTObjectLiteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTObjectLiteral.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTOpenQuicklyPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTOpenQuicklyPattern.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTOutlineView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPageController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPagingDotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPagingDotView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPasswordView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPasswordView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPathView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPatternString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPatternString.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlainTableHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlainTableHeaderView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistArrayNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistArrayNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistBooleanNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistBooleanNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistComboBoxCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistComboBoxCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistCommentNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistCommentNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDataFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDataFormatter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDataNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDataNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDateNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDateNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDictionaryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistDictionaryNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistModel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistNumberNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistNumberNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistOutlineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistOutlineView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistParser.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistPopupCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistPopupCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistScrollView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistSelection.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistStringNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistStringNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTableColumn.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTitledPopupCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistTitledPopupCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPlistXMLParser.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPointView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPointViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPointViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPopUpButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPopUpButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPreferenceSetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTPreferenceSetManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeSliderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeSliderCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRangeViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRectView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRectViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTReplacementView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTReplacementView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTReportDisclosureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTReportDisclosureView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRolloverImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRolloverImageButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRolloverTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTRolloverTracker.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarButtonCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScopeBarsManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScriptSourceTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScriptSourceTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollableTabBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollableTabBarView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollableTabButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTScrollableTabButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSearchField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSearchFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSegmentColorWell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSegmentColorWell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSegmentedControl.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSharedFindState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSharedFindState.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSharedLayerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSharedLayerDelegate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSizeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSizeView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSizeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSizeViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSliceLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSliceLayoutManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSliceTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSliceTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSlidingAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSlidingAnimation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSlidingViewsBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSlidingViewsBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceExpression.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceLandmarkItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceLandmarkItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceTextScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceTextScrollView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSourceTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSpacerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSpacerButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitViewAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitViewAnimation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTSplitViewItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStackView_ML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStackView_ML.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStepperTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStepperTextField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStepperTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTStepperTextFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabBarEnclosureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabBarEnclosureView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabBarView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabChooserView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTabChooserView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellViewOneLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellViewOneLine.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellViewTwoLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableCellViewTwoLine.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableHeaderCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableRowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableRowView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTableView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextAnnotation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextAnnotationTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextAnnotationTheme.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextCompletionWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextCompletionWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextFold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextFold.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextSidebarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextSidebarView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextStorage.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextUndoMultiEdits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextUndoMultiEdits.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextVisualization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTextVisualization.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTheme.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTileView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTileViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTileViewItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTitleBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTitleBarButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToggleSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToggleSwitch.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTip.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTipManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTipView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTToolTipView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTutorialController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTTutorialController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTURLMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTURLMatch.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTURLifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTURLifier.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTUndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTUndoManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTUndoTyping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTUndoTyping.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTVerticalCapacityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTVerticalCapacityView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/DVTViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/InvisibleScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/InvisibleScroller.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/MutableDraggingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/MutableDraggingInfo.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSCoding-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSCoding-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSCopying-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSCopying-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSDraggingInfo-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSDraggingInfo-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSFont-DVTARCAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSFont-DVTARCAdditions.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSFont-DVTPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSFont-DVTPrivate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSMenu-DVTNSMenuExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSMenu-DVTNSMenuExtras.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSMenuDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSMenuDelegate-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSNib-DVTNSNibAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSNib-DVTNSNibAdditions.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSNumber-PListEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSNumber-PListEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSObject-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSSecureCoding-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSSecureCoding-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSString-plistAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSString-plistAdditions.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSTextDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSTextDelegate-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSValue-DVTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSValue-DVTAdditions.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-DVTNSViewExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-DVTNSViewExtras.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-DVTSlidingExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-DVTSlidingExtras.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-LayoutOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSView-LayoutOrder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSWindow-DVTHacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/NSWindow-DVTHacks.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/QLPreviewItem-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/QLPreviewItem-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTDragWindowAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTDragWindowAnimation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTMarkerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTMarkerList.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTMarkerMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTMarkerMenuItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTSegmentedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTSegmentedCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTSlidingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTSlidingView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTTileViewRubberband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_DVTTileViewRubberband.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/DVTKit/_LazyInvalidationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/DVTKit/_LazyInvalidationHelper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/CDStructures.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAlertEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAlertEvent.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAnalysisTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEAnalysisTool.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEArchive.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBreakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBreakpoint.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildFolder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildPlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildPlan.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuildTask.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEBuilder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECodeModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECodeModule.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEConsoleItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEConsoleItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainerCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainerCore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainerItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEContainerItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECrashLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECrashLog.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECrashPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDECrashPoint.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDataMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDataMatrix.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDataProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDataProvider.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDebugProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDebugProcess.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDebugSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEDebugSession.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFileReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFileReference.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFolder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFolderCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFolderCore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFramework.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFrameworkCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEFrameworkCore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroupCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroupCore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroupWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEGroupWrapper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIPAProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIPAProcessor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndex.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexDatabase.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexImporter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexNewFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexNewFile.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexSymbol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexingJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIndexingJob.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEIssueProvider.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELaunchSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELaunchSession.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELocation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogProvider.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDELogStore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEPathRunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEPathRunnable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEPlayground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEPlayground.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEProductType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEProductType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERefactoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERefactoring.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERunOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERunOperation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDERunnable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEScheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEScheme.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESchemeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESchemeAction.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESchemeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESchemeCommand.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESnapshotItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESnapshotItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESourceTrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDESourceTrees.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEStackFrame.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETemplate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETemplateKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETemplateKind.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETest.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestIssue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestIssue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestResult.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestRunner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestingSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETestingSystem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETextIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDETextIndex.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEThread.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEUIATestRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEUIATestRunner.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEUpgradeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEUpgradeTask.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWatchpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWatchpoint.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWorkspace.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWorkspaceCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEWorkspaceCore.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEXcodeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEFoundation/IDEXcodeServer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/AuthorImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/AuthorImageCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/CDStructures.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTCancellable-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTCancellable-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTEditor-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTEditor-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTMenuBuilder-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTMenuBuilder-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTModelObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/DVTModelObject-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/DockUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/DockUtilities.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEARCConversionTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEARCConversionTarget.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAccountWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAccountWrapper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActionButton.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActionStackView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActionStackView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReport.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReportLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReportLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityReporter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEActivityView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlert-IDEAlertUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlert-IDEAlertUI.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertsMenuDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertsMenuDelegate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAlertsView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAnnotationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAnnotationContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppChooserTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppChooserTableView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppEnergyGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppEnergyGraph.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppStatistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAppStatistics.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEApplication.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEApplicationCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEApplicationCommands.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssertionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssertionHandler.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssetTagsInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssetTagsInspector.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssistant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssistant.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssistantContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAssistantContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAttachToProcessSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEAttachToProcessSheet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBarGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBarGraph.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindCommands.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindCriteria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindCriteria.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindFileLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindFileLocator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindQuery.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResult.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResultGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResultGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindResultSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindRuleEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindRuleEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindScopeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindScopeEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindStatusCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindStatusCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindTextQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindTextQuery.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchFindable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchRawTextFindable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBatchRawTextFindable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBlockScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBlockScrollView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBotsURLHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBotsURLHandler.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBounceAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBounceAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBreakpointIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBreakpointIcon.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildAlertMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildAlertMonitor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildIssueAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildIssueAnnotation.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildable-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEBuildable-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECallHierarchyItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECallHierarchyItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECancellableToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECancellableToken.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleFooterView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleHeaderView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleListView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECapsuleView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEClassIconProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEClassIconProvider.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECodeSnippet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECodeSnippet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECodeSnippetLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECodeSnippetLibrary.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECommandManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECommandManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonLineLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonLineLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEComparisonToolbar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConfigurableDataNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConfigurableDataNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConsoleArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConsoleArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConsoleTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEConsoleTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEControlGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEControlGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECoverageDocumentItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECoverageDocumentItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECustomAlertEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECustomAlertEvent.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECustomToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDECustomToolbar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugGaugeTrayCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugGaugeTrayCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDebugNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDefaultDebugArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDefaultDebugArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDetailedAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDetailedAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDeviceURLHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDeviceURLHandler.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDialogAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEDialogAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorBasicMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorBasicMode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorContents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorContents.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorContext.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorCoordinator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorDocument.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorEmpty.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorGeniusMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorGeniusMode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorHistoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorHistoryItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorStepperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEditorStepperView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEntitlementsFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEEntitlementsFile.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFileNavigableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFileNavigableItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilePickerPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilePickerPanel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilePickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilePickerView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFileTextSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFileTextSettings.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilterControlBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFilterControlBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFirstIssueAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFirstIssueAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFlightCheckView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFlightCheckView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFrameworkFilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEFrameworkFilePath.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraph.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraphChart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraphChart.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraphModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEGraphModel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEHelpMenuDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEHelpMenuDelegate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIconCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIconCreator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIconEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIconEntry.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIgnoredImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIgnoredImageView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEImageMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEImageMediaType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIndexGeniusResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIndexGeniusResult.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorChooser.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorKeyPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorKeyPath.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorProperty.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorSliver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEInspectorSliver.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIssueNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEIssueNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEJumpToField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEJumpToField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEJumpToFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEJumpToFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBinding.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingField.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyBindingSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyboardShortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEKeyboardShortcut.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELibraryArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELibraryArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELibraryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELibraryController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogAndTestsEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogAndTestsEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogDocument.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogEditor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogEditorScopeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogEditorScopeBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogNavigatorItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogNavigatorItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDELogViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaPasteHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaPasteHandler.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaRangeValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaRangeValue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaRepository.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaResource.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMediaType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuBuilder.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuKeyBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuKeyBinding.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuKeyBindingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMenuKeyBindingSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMigrationTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEMigrationTarget.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEModule.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENICFilterProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENICFilterProxy.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavBar.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigableItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigatorArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigatorArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigatorDataCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDENavigatorDataCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOnboardingPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOnboardingPage.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyMatch.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyQuery.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOpenQuicklyWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOrganizerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEOrganizerWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPOEmptyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPOEmptyView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathComponentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathComponentCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPathControl.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPickerAccountRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPickerAccountRow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPickerTeamRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPickerTeamRow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPlotGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEPlotGraph.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEProjectItemModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEProjectItemModel.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEProjectItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEProjectItemView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERecentsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERecentsHelper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERefactoringIssue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERefactoringIssue.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERollOverTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERollOverTableView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERoundPlaqueView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERoundPlaqueView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunAlertMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunAlertMonitor.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunScriptAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunScriptAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunSheetDataCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDERunSheetDataCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESaveMultipleItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESaveMultipleItem.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESchemeNavigable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESchemeNavigable.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEScriptingHack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEScriptingHack.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEScriptingSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEScriptingSelect.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESelection.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowDebuggerAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowDebuggerAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowEditorAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowEditorAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowTabAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowTabAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowToolbarAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEShowToolbarAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESoundAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESoundAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESoundMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESoundMediaType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESourceControlLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESourceControlLog.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESourceControlVIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESourceControlVIP.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESpeechAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESpeechAlert.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESpinnerLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESpinnerLayer.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEStringWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEStringWrapper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESymbolNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDESymbolNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETagToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETagToken.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETagTokenFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETagTokenFieldCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETeamDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETeamDescription.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestNavigator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestNavigator.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestable-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestable-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestingCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestingCommands.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETestingHelper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETextKeyBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETextKeyBinding.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETextKeyBindingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDETextKeyBindingSet.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarDelegate.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarItemProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarItemProxy.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEToolbarManager.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUpgradeTaskGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUpgradeTaskGroup.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUtilityArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUtilityArea.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUtilitySlice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEUtilitySlice.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesViewCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesViewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEVariablesViewNode.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEViewController.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWelcomeWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWelcomeWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWorkspaceDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWorkspaceDocument.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWorkspaceWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEWorkspaceWindow.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEXcodeSelectHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDEXcodeSelectHelper.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDE_IBFlippedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/IDE_IBFlippedView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSCoding-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSCoding-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSCopying-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSCopying-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/NSObject-Protocol.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/RVAuthorImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/RVAuthorImageView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCBuildResultAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCBuildResultAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCBuildResultsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCBuildResultsCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCEColoredRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCEColoredRect.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCEForwardingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCEForwardingCell.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCETextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCETextLayout.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogErrorAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogErrorAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogItemAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogItemAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogItemCounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogItemCounts.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogMessageAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogMessageAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogNoticeAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogNoticeAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogProblemAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogProblemAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogSectionAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogSectionAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogUnitTestAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogUnitTestAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogWarningAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCLogWarningAdapter.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCTranscriptTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/XCTranscriptTextView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEIssueDocumentURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEIssueDocumentURL.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEOpenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEOpenRequest.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEPathAndFileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEPathAndFileType.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDETmpSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDETmpSplitView.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEUtilitySliceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/IDEKit/_IDEUtilitySliceData.h -------------------------------------------------------------------------------- /Multiplex/IDEHeaders/IDEHeaders/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/IDEHeaders/IDEHeaders/Info.plist -------------------------------------------------------------------------------- /Multiplex/Multiplex-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Multiplex-Info.plist -------------------------------------------------------------------------------- /Multiplex/Multiplex-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Multiplex-Prefix.pch -------------------------------------------------------------------------------- /Multiplex/MultiplexPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/MultiplexPlugin.h -------------------------------------------------------------------------------- /Multiplex/MultiplexPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/MultiplexPlugin.m -------------------------------------------------------------------------------- /Multiplex/Utilities/MPXGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Multiplex/Utilities/MPXGeometry.h -------------------------------------------------------------------------------- /Multiplex/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Readme.md -------------------------------------------------------------------------------- /Scripts/compatibility-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Scripts/compatibility-update.sh -------------------------------------------------------------------------------- /Scripts/dump-classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Scripts/dump-classes.py -------------------------------------------------------------------------------- /Scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kolinkrewinkel/Multiplex/HEAD/Scripts/install.sh --------------------------------------------------------------------------------