Files
FreeRDP/client/iOS/Models/Bookmark.h

49 lines
1.3 KiB
C
Raw Permalink Normal View History

/*
Bookmark model abstraction
2019-11-06 15:24:51 +01:00
2013-12-04 11:37:57 +01:00
Copyright 2013 Thincast Technologies GmbH, Authors: Dorian Johnson
2019-11-06 15:24:51 +01:00
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at
http://mozilla.org/MPL/2.0/.
*/
#import <Foundation/Foundation.h>
2013-03-29 14:28:27 +01:00
#import <UIKit/UIKit.h>
#import "ConnectionParams.h"
2019-11-06 15:24:51 +01:00
@interface ComputerBookmark : NSObject <NSCoding>
{
@protected
ComputerBookmark *_parent;
NSString *_uuid, *_label;
UIImage *_image;
ConnectionParams *_connection_params;
BOOL _connected_via_wlan;
}
2019-11-06 15:24:51 +01:00
@property(nonatomic, assign) ComputerBookmark *parent;
@property(nonatomic, readonly) NSString *uuid;
@property(nonatomic, copy) NSString *label;
@property(nonatomic, retain) UIImage *image;
@property(readonly, nonatomic) ConnectionParams *params;
@property(nonatomic, assign) BOOL conntectedViaWLAN;
// Creates a copy of this object, with a new UUID
- (id)copy;
- (id)copyWithUUID;
// Whether user can delete, move, or rename this entry
- (BOOL)isDeletable;
- (BOOL)isMovable;
- (BOOL)isRenamable;
- (BOOL)hasImmutableHost;
2019-11-06 15:24:51 +01:00
- (id)initWithConnectionParameters:(ConnectionParams *)params;
- (id)initWithBaseDefaultParameters;
// A copy of @params, with _bookmark_uuid set.
2019-11-06 15:24:51 +01:00
- (ConnectionParams *)copyMarkedParams;
@end