mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 10:27:46 +01:00
108 lines
1.6 KiB
Objective-C
108 lines
1.6 KiB
Objective-C
#import "TGDialogListCompanion.h"
|
|
|
|
@implementation TGDialogListCompanion
|
|
|
|
@synthesize dialogListController = _dialogListController;
|
|
|
|
@synthesize showListEditingControl = _showListEditingControl;
|
|
@synthesize forwardMode = _forwardMode;
|
|
|
|
@synthesize unreadCount = _unreadCount;
|
|
|
|
- (id)processSearchResultItem:(id)__unused item
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (id<TGDialogListCellAssetsSource>)dialogListCellAssetsSource
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (void)dialogListReady
|
|
{
|
|
|
|
}
|
|
|
|
- (void)clearData
|
|
{
|
|
|
|
}
|
|
|
|
- (void)loadMoreItems
|
|
{
|
|
|
|
}
|
|
|
|
- (void)composeMessageAndOpenSearch:(bool)__unused openSearch
|
|
{
|
|
|
|
}
|
|
|
|
- (void)navigateToBroadcastLists
|
|
{
|
|
}
|
|
|
|
- (void)navigateToNewGroup
|
|
{
|
|
}
|
|
|
|
- (void)conversationSelected:(TGConversation *)__unused conversation
|
|
{
|
|
}
|
|
|
|
- (void)deleteItem:(TGConversation *)__unused conversation animated:(bool)__unused animated
|
|
{
|
|
}
|
|
|
|
- (void)clearItem:(TGConversation *)__unused conversation animated:(bool)__unused animated
|
|
{
|
|
}
|
|
|
|
- (void)beginSearch:(NSString *)__unused queryString inMessages:(bool)__unused inMessages
|
|
{
|
|
|
|
}
|
|
|
|
- (void)searchResultSelectedUser:(TGUser *)__unused user
|
|
{
|
|
|
|
}
|
|
|
|
- (void)searchResultSelectedConversation:(TGConversation *)__unused conversation
|
|
{
|
|
|
|
}
|
|
|
|
- (void)searchResultSelectedConversation:(TGConversation *)__unused conversation atMessageId:(int)__unused messageId
|
|
{
|
|
|
|
}
|
|
|
|
- (void)searchResultSelectedMessage:(TGMessage *)__unused message
|
|
{
|
|
|
|
}
|
|
|
|
- (bool)shouldDisplayEmptyListPlaceholder
|
|
{
|
|
return true;
|
|
}
|
|
|
|
- (void)wakeUp
|
|
{
|
|
|
|
}
|
|
|
|
- (void)resetLocalization
|
|
{
|
|
|
|
}
|
|
|
|
- (bool)isConversationOpened:(int64_t)__unused conversationId
|
|
{
|
|
return false;
|
|
}
|
|
|
|
@end
|