2020-06-24 16:40:45 -04:00
|
|
|
//
|
|
|
|
// TuskerRootViewController.swift
|
|
|
|
// Tusker
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 6/24/20.
|
|
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
2022-11-01 20:49:07 -04:00
|
|
|
protocol TuskerRootViewController: UIViewController, StatusBarTappableViewController {
|
2020-06-24 16:40:45 -04:00
|
|
|
func presentCompose()
|
|
|
|
func select(tab: MainTabBarViewController.Tab)
|
2020-10-26 22:13:48 -04:00
|
|
|
func getTabController(tab: MainTabBarViewController.Tab) -> UIViewController?
|
2021-05-24 19:07:47 -04:00
|
|
|
func performSearch(query: String)
|
2022-04-30 11:46:14 -04:00
|
|
|
func presentPreferences(completion: (() -> Void)?)
|
2020-06-24 16:40:45 -04:00
|
|
|
}
|