mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-16 19:04:43 +03:00
9797782682
This allows developers to build and run the extension by default. Official packages bundles will be re-signed after the build, we The SocketApi prefix can be set at configure time through cmake and should match the key that will be used to sign the whole .app bundle (including the embedded FindexSync .appex bundle).
40 lines
No EOL
1.2 KiB
Objective-C
40 lines
No EOL
1.2 KiB
Objective-C
/**
|
|
* Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; either version 2.1 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RequestManager.h"
|
|
#import "SyncClientProxy.h"
|
|
|
|
@interface OwnCloudFinderRequestManager : NSObject <SyncClientProxyDelegate>
|
|
{
|
|
SyncClientProxy *_syncClientProxy;
|
|
|
|
NSMutableArray* _requestQueue;
|
|
NSMutableDictionary* _registeredPathes;
|
|
NSMutableSet* _requestedPaths;
|
|
|
|
NSString *_shareMenuTitle;
|
|
}
|
|
|
|
@property (nonatomic, retain) NSString* filterFolder;
|
|
|
|
+ (OwnCloudFinderRequestManager*)sharedInstance;
|
|
|
|
- (BOOL)isRegisteredPath:(NSString*)path isDirectory:(BOOL)isDir;
|
|
- (void)askForIcon:(NSString*)path isDirectory:(BOOL)isDir;
|
|
- (void)menuItemClicked:(NSDictionary*)actionDictionary;
|
|
|
|
- (NSString*) shareItemTitle;
|
|
|
|
@end |