110 lines
3.3 KiB
Swift
110 lines
3.3 KiB
Swift
/*
|
|
* QRCodeReader.swift
|
|
*
|
|
* Copyright 2014-present Yannick Loriot.
|
|
* http://yannickloriot.com
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
/**
|
|
The QRCodeViewControllerBuilder aims to create a simple configuration object for
|
|
the QRCode view controller.
|
|
*/
|
|
public final class QRCodeReaderViewControllerBuilder {
|
|
// MARK: - Configuring the QRCodeViewController Objects
|
|
|
|
/**
|
|
The builder block.
|
|
The block gives a reference of builder you can configure.
|
|
*/
|
|
public typealias QRCodeReaderViewControllerBuilderBlock = (QRCodeReaderViewControllerBuilder) -> Void
|
|
|
|
/**
|
|
The title to use for the cancel button.
|
|
*/
|
|
public var cancelButtonTitle = "Cancel"
|
|
|
|
/**
|
|
The code reader object used to scan the bar code.
|
|
*/
|
|
public var reader = QRCodeReader()
|
|
|
|
/**
|
|
The reader container view used to display the video capture and the UI components.
|
|
*/
|
|
public var readerView = QRCodeReaderContainer(displayable: QRCodeReaderView())
|
|
|
|
/**
|
|
Flag to know whether the view controller start scanning the codes when the view will appear.
|
|
*/
|
|
public var startScanningAtLoad = true
|
|
|
|
/**
|
|
Flag to display the cancel button.
|
|
*/
|
|
public var showCancelButton = true
|
|
|
|
/**
|
|
Flag to display the switch camera button.
|
|
*/
|
|
public var showSwitchCameraButton = true
|
|
|
|
/**
|
|
Flag to display the toggle torch button. If the value is true and there is no torch the button will not be displayed.
|
|
*/
|
|
public var showTorchButton = false
|
|
|
|
/**
|
|
Flag to display the guide view.
|
|
*/
|
|
public var showOverlayView = true
|
|
|
|
/**
|
|
Flag to display the guide view.
|
|
*/
|
|
public var handleOrientationChange = true
|
|
|
|
/**
|
|
A UIStatusBarStyle key indicating your preferred status bar style for the view controller.
|
|
Nil by default. It means it'll use the current context status bar style.
|
|
*/
|
|
public var preferredStatusBarStyle: UIStatusBarStyle? = nil
|
|
|
|
// MARK: - Initializing a Flap View
|
|
|
|
/**
|
|
Initialize a QRCodeViewController builder with default values.
|
|
*/
|
|
public init() {}
|
|
|
|
/**
|
|
Initialize a QRCodeReaderViewController builder with default values.
|
|
|
|
- parameter buildBlock: A QRCodeReaderViewController builder block to configure itself.
|
|
*/
|
|
public init(buildBlock: QRCodeReaderViewControllerBuilderBlock) {
|
|
buildBlock(self)
|
|
}
|
|
}
|