summaryrefslogtreecommitdiffstats
path: root/ios/LibreOfficeLight/LibreOfficeLight/PropertiesController.swift
blob: 04ebaf78d67046de76d09c379e5c4d080af91eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
//
// This file is part of the LibreOffice project.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
import UIKit


class PropertiesController: UIViewController
{
    // Temp. functions
    @IBAction func doStyle1(_ sender: UIButton)
    {
        loadController("Document")
    }



    @IBAction func doStyle2(_ sender: UIButton)
    {
        loadController("Document")
    }



    @IBAction func doStyle3(_ sender: UIButton)
    {
        loadController("Document")
    }



    @IBAction func doStyle4(_ sender: UIButton)
    {
        loadController("Document")
    }



    @IBAction func doStyle5(_ sender: UIButton)
    {
        loadController("Document")
    }



    @IBAction func doStyle6(_ sender: UIButton)
    {
        loadController("Document")
    }


    @IBAction func doStyle7(_ sender: UIButton)
    {
        loadController("Document")
    }



    func loadController(_ name:String)
    {
        let destController : UIViewController = self.storyboard!.instantiateViewController(withIdentifier: name)
        self.navigationController!.pushViewController(destController, animated: true)

        UIView.animate(withDuration: 0.3, animations: { () -> Void in
            self.view.frame = CGRect(x: -UIScreen.main.bounds.size.width, y: 0, width: UIScreen.main.bounds.size.width,height: UIScreen.main.bounds.size.height)
            self.view.layoutIfNeeded()
            self.view.backgroundColor = UIColor.clear
        }, completion: { (finished) -> Void in
            self.view.removeFromSuperview()
            self.removeFromParentViewController()
        })
    }



    override func viewDidLoad()
    {
        super.viewDidLoad()
        // Do any additional setup after loading the view.
    }



    override func didReceiveMemoryWarning()
    {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }



    override func viewWillAppear(_ animated: Bool)
    {
        super.viewWillAppear(animated)
    }
}