NCOnDeviceHeaderFooterMenu.swift 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //
  2. // NCOnDeviceHeaderFooterMenu.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 24/10/2018.
  6. // Copyright © 2018 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. class NCOnDeviceHeaderMenu: UICollectionReusableView {
  25. @IBOutlet weak var buttonMore: UIButton!
  26. @IBOutlet weak var buttonSwitch: UIButton!
  27. @IBOutlet weak var buttonOrder: UIButton!
  28. @IBOutlet weak var buttonOrderWidthConstraint: NSLayoutConstraint!
  29. @IBOutlet weak var separator: UIView!
  30. var delegate: NCOnDeviceHeaderMenuDelegate?
  31. override func awakeFromNib() {
  32. super.awakeFromNib()
  33. buttonSwitch.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "switchList"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  34. buttonOrder.setTitle("", for: .normal)
  35. buttonOrder.setTitleColor(NCBrandColor.sharedInstance.icon, for: .normal)
  36. buttonMore.setImage(CCGraphics.changeThemingColorImage(UIImage.init(named: "more"), multiplier: 2, color: NCBrandColor.sharedInstance.icon), for: .normal)
  37. separator.backgroundColor = NCBrandColor.sharedInstance.seperator
  38. }
  39. @IBAction func touchUpInsideMore(_ sender: Any) {
  40. delegate?.tapMoreHeaderMenu(sender: sender)
  41. }
  42. @IBAction func touchUpInsideSwitch(_ sender: Any) {
  43. delegate?.tapSwitchHeaderMenu(sender: sender)
  44. }
  45. @IBAction func touchUpInsideOrder(_ sender: Any) {
  46. delegate?.tapOrderHeaderMenu(sender: sender)
  47. }
  48. }
  49. protocol NCOnDeviceHeaderMenuDelegate {
  50. func tapSwitchHeaderMenu(sender: Any)
  51. func tapMoreHeaderMenu(sender: Any)
  52. func tapOrderHeaderMenu(sender: Any)
  53. }
  54. class NCOnDeviceFooterMenu: UICollectionReusableView {
  55. @IBOutlet weak var labelFooter: UILabel!
  56. override func awakeFromNib() {
  57. super.awakeFromNib()
  58. }
  59. }