mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-24 14:48:07 +00:00
35 lines
981 B
Objective-C
35 lines
981 B
Objective-C
//
|
|
// RecordingsListView.h
|
|
// linphone
|
|
//
|
|
// Created by benjamin_verdier on 25/07/2018.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "UICompositeView.h"
|
|
#import "RecordingsListTableView.h"
|
|
#import "UIIconButton.h"
|
|
|
|
typedef enum _RecordingSelectionMode { RecordingSelectionModeNone, RecordingSelectionModeEdit } RecordingSelectionMode;
|
|
|
|
@interface RecordingSelection : NSObject <UISearchBarDelegate> {
|
|
}
|
|
|
|
+ (void)setSelectionMode:(RecordingSelectionMode)selectionMode;
|
|
+ (RecordingSelectionMode)getSelectionMode;
|
|
|
|
@end
|
|
|
|
@interface RecordingsListView : UIViewController <UICompositeViewDelegate>
|
|
|
|
@property(strong, nonatomic) IBOutlet RecordingsListTableView *tableController;
|
|
@property(strong, nonatomic) IBOutlet UIView *topBar;
|
|
@property(weak, nonatomic) IBOutlet UIIconButton *deleteButton;
|
|
@property (strong, nonatomic) IBOutlet UIIconButton *backButton;
|
|
|
|
- (IBAction)onDeleteClick:(id)sender;
|
|
- (IBAction)onEditionChangeClick:(id)sender;
|
|
- (IBAction)onBackPressed:(id)sender;
|
|
|
|
@end
|