mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
Objective-C
33 lines
1.0 KiB
Objective-C
//
|
|
// SignalsViewController.h
|
|
// Signal
|
|
//
|
|
// Created by Dylan Bourgeois on 27/10/14.
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#include "InboxTableViewCell.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "Contact.h"
|
|
#import "TSGroupModel.h"
|
|
#import "CallState.h"
|
|
|
|
@interface SignalsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, TableViewCellDelegate>
|
|
|
|
@property (nonatomic) NSString *contactIdentifierFromCompose;
|
|
@property (nonatomic) TSGroupModel *groupFromCompose;
|
|
@property (nonatomic) BOOL composeMessage;
|
|
|
|
@property (nonatomic, retain) IBOutlet UITableView *tableView;
|
|
@property (nonatomic, retain) IBOutlet UIButton *inboxButton;
|
|
@property (nonatomic, retain) IBOutlet UIButton *archiveButton;
|
|
@property (nonatomic, retain) IBOutlet UILabel *inboxCountLabel;
|
|
@property (nonatomic, strong) IBOutlet UILabel *emptyBoxLabel;
|
|
|
|
@property (nonatomic, retain) CallState* latestCall;
|
|
|
|
-(IBAction)selectedInbox:(id)sender;
|
|
-(IBAction)selectedArchive:(id)sender;
|
|
@end
|