@@ -43,13 +43,14 @@ final class NCGlobal: Sendable {
4343 // Intro selector
4444 //
4545 let introLogin : Int = 0
46+ let introSignup : Int = 1
4647 let introSignUpWithProvider : Int = 1
4748
4849 // Avatar
4950 //
5051 let avatarSize : Int = 128 * Int( UIScreen . main. scale)
5152 let avatarSizeRounded : Int = 128
52-
53+
5354 // Preview size
5455 //
5556 let size1024 : CGSize = CGSize ( width: 1024 , height: 1024 )
@@ -113,7 +114,35 @@ final class NCGlobal: Sendable {
113114 //
114115 let buttonMoreMore = " more "
115116 let buttonMoreLock = " moreLock "
116-
117+ let buttonMoreStop = " stop "
118+
119+ // Standard height sections header/footer
120+ //
121+ let heightButtonsView : CGFloat = 50
122+ let heightHeaderTransfer : CGFloat = 50
123+ let heightSection : CGFloat = 30
124+ let heightFooter : CGFloat = 1
125+ let heightFooterButton : CGFloat = 30
126+ let endHeightFooter : CGFloat = 85
127+
128+
129+ // Text - OnlyOffice - Collabora - QuickLook
130+ //
131+ let editorText = " text "
132+ let editorOnlyoffice = " onlyoffice "
133+ let editorCollabora = " collabora "
134+ let editorQuickLook = " quicklook "
135+
136+ let onlyofficeDocx = " onlyoffice_docx "
137+ let onlyofficeXlsx = " onlyoffice_xlsx "
138+ let onlyofficePptx = " onlyoffice_pptx "
139+
140+ // Template
141+ //
142+ let templateDocument = " document "
143+ let templateSpreadsheet = " spreadsheet "
144+ let templatePresentation = " presentation "
145+
117146 // Rich Workspace
118147 //
119148 let fileNameRichWorkspace = " Readme.md "
@@ -198,6 +227,8 @@ final class NCGlobal: Sendable {
198227 let selectorSaveAsScan = " saveAsScan "
199228 let selectorOpenDetail = " openDetail "
200229 let selectorSynchronizationOffline = " synchronizationOffline "
230+ let selectorPrint = " print "
231+ let selectorDeleteFile = " deleteFile "
201232
202233 // Metadata : Status
203234 //
@@ -228,7 +259,6 @@ final class NCGlobal: Sendable {
228259 let metadataStatusForScreenAwake = [ - 1 , - 2 , 1 , 2 ]
229260 let metadataStatusHideInView = [ 1 , 2 , 3 , 11 ]
230261 let metadataStatusWaitWebDav = [ 10 , 11 , 12 , 13 , 14 , 15 ]
231- let metadataStatusTransfers = [ - 2 , - 3 , 2 , 3 , 10 , 11 , 12 , 13 , 14 , 15 ]
232262
233263 let metadatasStatusInWaiting = [ - 1 , 1 , 10 , 11 , 12 , 13 , 14 , 15 ]
234264 let metadatasStatusInWaitingDownloadUpload = [ - 1 , 1 ]
@@ -246,13 +276,17 @@ final class NCGlobal: Sendable {
246276 let notificationCenterChangeTheming = " changeTheming " // userInfo: account
247277 let notificationCenterRichdocumentGrabFocus = " richdocumentGrabFocus "
248278 let notificationCenterReloadDataNCShare = " reloadDataNCShare "
279+ let notificationCenterDidCreateShareLink = " didCreateShareLink "
280+
249281 let notificationCenterCloseRichWorkspaceWebView = " closeRichWorkspaceWebView "
250282 let notificationCenterReloadAvatar = " reloadAvatar "
251283 let notificationCenterClearCache = " clearCache "
252284 let notificationCenterCheckUserDelaultErrorDone = " checkUserDelaultErrorDone " // userInfo: account, controller
253285 let notificationCenterServerDidUpdate = " serverDidUpdate " // userInfo: account
254286 let notificationCenterNetworkReachability = " networkReachability "
255287
288+ let notificationCenterRenameFile = " renameFile " // userInfo: serverUrl, account, error
289+
256290 let notificationCenterMenuSearchTextPDF = " menuSearchTextPDF "
257291 let notificationCenterMenuGotToPageInPDF = " menuGotToPageInPDF "
258292
@@ -270,6 +304,7 @@ final class NCGlobal: Sendable {
270304
271305 let notificationCenterNetworkingProcess = " networkingProcess "
272306 let notificationCenterTransferCountChanged = " transferCountChanged "
307+ let notificationCenterFavoriteStatusChanged = " favoriteStatusChanged "
273308
274309 // Networking Status
275310 let networkingStatusCreateFolder = " statusCreateFolder "
@@ -286,6 +321,7 @@ final class NCGlobal: Sendable {
286321 let networkingStatusUploaded = " statusUploaded "
287322
288323 let networkingStatusReloadAvatar = " statusReloadAvatar "
324+ let notificationCenterUpdateIcons = " updateIcons "
289325
290326 // TIP
291327 //
@@ -368,6 +404,20 @@ final class NCGlobal: Sendable {
368404 //
369405 let taskDescriptionRetrievesProperties = " retrievesProperties "
370406 let taskDescriptionSynchronization = " synchronization "
407+ let taskDescriptionDeleteFileOrFolder = " deleteFileOrFolder "
408+
409+ // MoEngage App Version
410+ //
411+ let moEngageAppVersion = 854
412+
413+ // Filename Mask and Type
414+ //
415+ let keyFileNameMask = " fileNameMask "
416+ let keyFileNameType = " fileNameType "
417+ let keyFileNameAutoUploadMask = " fileNameAutoUploadMask "
418+ let keyFileNameAutoUploadType = " fileNameAutoUploadType "
419+ let keyFileNameOriginal = " fileNameOriginal "
420+ let keyFileNameOriginalAutoUpload = " fileNameOriginalAutoUpload "
371421
372422 // LOG TAG
373423 //
0 commit comments