summaryrefslogtreecommitdiffstats
path: root/ios/LibreOfficeLight/LibreOfficeLight/DocumentController.swift
blob: c8c374ade570ed39c993f2b89771c55727cf8429 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
//
// 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 DocumentController: UIViewController, MenuDelegate, UIDocumentBrowserViewControllerDelegate
{
    var currentDocumentName : String?
    var currentCloudUrl : URL?
    var currentStorageLocal : Bool = true




    // Show sidemenu (part of documentcontroller)
    @IBAction func doMenu(_ sender: UIBarButtonItem)
    {
        if (sender.tag == 99) {
            sender.tag = 0;

            let viewMenuBack : UIView = view.subviews.last!

            UIView.animate(withDuration: 0.3, animations: { () -> Void in
                var frameMenu : CGRect = viewMenuBack.frame
                frameMenu.origin.x = -1 * UIScreen.main.bounds.size.width
                viewMenuBack.frame = frameMenu
                viewMenuBack.layoutIfNeeded()
                viewMenuBack.backgroundColor = UIColor.clear
                }, completion: { (finished) -> Void in
                    viewMenuBack.removeFromSuperview()
                })
            return
        }

        sender.isEnabled = false
        sender.tag = 99

        let sidebar : SidebarController = self.storyboard!.instantiateViewController(withIdentifier: "SidebarController") as! SidebarController
        view.addSubview(sidebar.view)
        addChildViewController(sidebar)
        sidebar.view.layoutIfNeeded()

        sidebar.view.frame=CGRect(x: 0 - UIScreen.main.bounds.size.width, y: 0, width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height);

        UIView.animate(withDuration: 0.3, animations: { () -> Void in
            sidebar.view.frame=CGRect(x: 0, y: 0, width: UIScreen.main.bounds.size.width, height: UIScreen.main.bounds.size.height);
            sender.isEnabled = true
            }, completion:nil)
    }


    internal func documentBrowser(_ controller: UIDocumentBrowserViewController,
                                  didRequestDocumentCreationWithHandler importHandler: @escaping (URL?, UIDocumentBrowserViewController.ImportMode) -> Void)
    {
        // Asks the delegate to create a new document.
    }

    internal func documentBrowser(_ controller: UIDocumentBrowserViewController,
                                  didImportDocumentAt sourceURL: URL,
                                  toDestinationURL destinationURL: URL)
    {
        // Tells the delegate that a document has been successfully imported.
    }

    internal func documentBrowser(_ controller: UIDocumentBrowserViewController,
                                  failedToImportDocumentAt documentURL: URL,
                                  error: Error?)
    {
        // Tells the delegate that the document browser failed to import the specified document.
    }

    internal func documentBrowser(_ controller: UIDocumentBrowserViewController,
                                  didPickDocumentURLs documentURLs: [URL])
    {
        // Tells the delegate that the user has selected one or more documents.
    }

    @IBOutlet weak var janTest: UILabel!

    // Last stop before displaying popover
    override func prepare(for segue: UIStoryboardSegue, sender: Any?)
    {
        if segue.identifier == "showActions" {
            let vc = segue.destination as! DocumentActions
            vc.delegate = self

            // JIX, TO BE CHANGED
            vc.isDocActive = true
        }
    }



    func actionName(_ name : String)
    {
        currentDocumentName = name
    }



    func actionMenuSelected(_ tag : Int)
    {
        switch tag
        {
            case 1: // Open...
                // let openMenu = UIDocumentPickerViewController(documentTypes: ["public.data"], in: .open)
                let openMenu = UIDocumentBrowserViewController()
                //penMenu.allowsDocumentCreation = true
                // UIDocumentBrowserViewController.ImportMode = UIDocumentBrowserViewController.ImportMode.none // copy, move
                //openMenu.InterfaceStyle = UIDocumentPickerViewController.dark
                openMenu.delegate = self
                self.present(openMenu, animated: true, completion: nil)
                print("menu Open... to be done")

            case 2: // Save
                print("menu Save to be done")

            case 3: // Save as...
                let vc = storyboard?.instantiateViewController(withIdentifier: "setNameAction") as! setNameAction
                vc.modalPresentationStyle = .popover
                vc.delegate = self
                let popover = vc.popoverPresentationController!
                popover.delegate = self as? UIPopoverPresentationControllerDelegate
                popover.permittedArrowDirections = .up
                popover.sourceView = janTest
                popover.sourceRect = janTest.bounds
                present(vc, animated: true, completion: nil)
                print("menu Save as... to be done")

            case 4: // Save as PDF...
                print("menu Save as PDF... to be done")

            case 5: // Print...
                print("menu Print... to be done")

            default: // should not happen
                print("unknown menu" + String(tag))
        }
    }


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

        // let path = Bundle.main.path(forResource: "Info", ofType: "plist")
        // let dict = NSDictionary(contentsOfFile: path!)
        // let tableData = dict!.object(forKey: "CFBundleDocumentTypes")
    }



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



// Protocol for action popover callback
protocol MenuDelegate
{
    func actionMenuSelected(_ tag : Int)
    func actionName(_ name : String)
}



class DocumentActions: UITableViewController
{
    // Pointer to callback class
    var delegate  : MenuDelegate?
    var isDocActive : Bool = false

    // Calling class might enable/disable each button
    @IBAction func actionMenuSelect(_ sender: UIButton)
    {
        dismiss(animated: false)
        delegate?.actionMenuSelected(sender.tag)
    }

    @IBOutlet weak var buttonNew: UIButton!
    @IBOutlet weak var buttonOpen: UIButton!
    @IBOutlet weak var buttonSave: UIButton!
    @IBOutlet weak var buttonSaveAs: UIButton!
    @IBOutlet weak var buttonSaveAsPDF: UIButton!
    @IBOutlet weak var buttonPrint: UIButton!
    @IBOutlet weak var buttonCopy: UIButton!
    @IBOutlet weak var buttonMove: UIButton!
    @IBOutlet weak var buttonDelete: UIButton!

    override func viewDidLoad()
    {
        super.viewDidLoad()
        buttonSave.isEnabled = isDocActive
        buttonSaveAs.isEnabled = isDocActive
        buttonSaveAsPDF.isEnabled = isDocActive
        buttonPrint.isEnabled = isDocActive
    }
}



class setNameAction: UIViewController
{
    // Pointer to callback class
    var delegate  : MenuDelegate?
    var didEdit : Bool = false

    // reference to new name
    @IBOutlet weak var editText: UITextField!


    // continue "save as..." with new name
    @IBAction func actionOK(_ sender: UIButton)
    {
        dismiss(animated: false)
        if didEdit && editText.text != "" {
            delegate?.actionName(editText.text!)
        }
    }


    @IBAction func actionStartEdit(_ sender: UITextField)
    {
        if !didEdit {
            sender.text = ""
            didEdit = true
        }
    }

    @IBAction func actionCancel(_ sender: UIButton)
    {
        dismiss(animated: false)
    }


    override func viewDidLoad()
    {
        super.viewDidLoad()
    }
}