2024-03-19 18:58:51 +00:00
|
|
|
//
|
|
|
|
// GalleryContentViewControllerContainer.swift
|
|
|
|
// GalleryVC
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 12/28/23.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
@MainActor
|
2024-04-01 03:27:56 +00:00
|
|
|
public protocol GalleryContentViewControllerContainer: AnyObject {
|
2024-03-20 15:49:00 +00:00
|
|
|
var galleryControlsVisible: Bool { get }
|
|
|
|
|
2024-03-19 18:58:51 +00:00
|
|
|
func setGalleryContentLoading(_ loading: Bool)
|
|
|
|
func galleryContentChanged()
|
|
|
|
func disableGalleryScrollAndZoom()
|
2024-03-29 01:32:11 +00:00
|
|
|
func setGalleryControlsVisible(_ visible: Bool, animated: Bool)
|
2024-03-19 18:58:51 +00:00
|
|
|
}
|