]> git.mxchange.org Git - flightgear.git/blob - src/GUI/FileDialog.cxx
Reset: GUI can be shutdown.
[flightgear.git] / src / GUI / FileDialog.cxx
1 // FileDialog -- generic FileDialog interface and Nasal wrapper
2 //
3 // Written by James Turner, started 2012.
4 //
5 // Copyright (C) 2012 James Turner  <zakalawe@mac.com>
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include "config.h"
23 #endif
24
25
26 #include "FileDialog.hxx"
27
28 #include <boost/shared_ptr.hpp>
29
30 #include <simgear/nasal/cppbind/from_nasal.hxx>
31 #include <simgear/nasal/cppbind/to_nasal.hxx>
32 #include <simgear/nasal/cppbind/NasalHash.hxx>
33
34 #include <Main/globals.hxx>
35 #include <Scripting/NasalSys.hxx>
36 #include "PUIFileDialog.hxx"
37
38 #ifdef SG_MAC
39     #include "CocoaFileDialog.hxx"
40 #endif
41
42 FGFileDialog::FGFileDialog(Usage use) :
43     _usage(use),
44     _showHidden(false)
45 {
46     
47 }
48
49 FGFileDialog::~FGFileDialog()
50 {
51     // ensure this is concrete so callback gets cleaned up.
52 }
53
54 void FGFileDialog::setTitle(const std::string& aText)
55 {
56     _title = aText;
57 }
58
59 void FGFileDialog::setButton(const std::string& aText)
60 {
61     _buttonText = aText;
62 }
63
64 void FGFileDialog::setDirectory(const SGPath& aPath)
65 {
66     _initialPath = aPath;
67 }
68
69 void FGFileDialog::setFilterPatterns(const string_list& patterns)
70 {
71     _filterPatterns = patterns;
72 }
73
74 void FGFileDialog::setPlaceholderName(const std::string& aName)
75 {
76     _placeholder = aName;
77 }
78
79 void FGFileDialog::setCallback(Callback* aCB)
80 {
81     _callback.reset(aCB);
82 }
83
84 void FGFileDialog::setShowHidden(bool show)
85 {
86     _showHidden = show;
87 }
88
89 class NasalCallback : public FGFileDialog::Callback
90 {
91 public:
92     NasalCallback(naRef f, naRef obj) :
93         func(f),
94         object(obj)
95     {
96         FGNasalSys* sys = static_cast<FGNasalSys*>(globals->get_subsystem("nasal"));
97         _gcKeys[0] = sys->gcSave(f);
98         _gcKeys[1] = sys->gcSave(obj);
99     }
100     
101     virtual void onFileDialogDone(FGFileDialog* instance, const SGPath& aPath)
102     {
103         FGNasalSys* sys = static_cast<FGNasalSys*>(globals->get_subsystem("nasal"));
104         naContext ctx = sys->context();
105         
106         naRef args[1];
107         args[0] = nasal::to_nasal(ctx, aPath);
108         
109         sys->callMethod(func, object, 1, args, naNil() /* locals */);
110     }
111     
112     ~NasalCallback()
113     {
114         FGNasalSys* sys = static_cast<FGNasalSys*>(globals->get_subsystem("nasal"));
115         sys->gcRelease(_gcKeys[0]);
116         sys->gcRelease(_gcKeys[1]);
117     }
118 private:
119     naRef func;
120     naRef object;
121     int _gcKeys[2];
122 };
123
124 void FGFileDialog::setCallbackFromNasal(const nasal::CallContext& ctx)
125 {
126     // wrap up the naFunc in our callback type
127     naRef func = ctx.requireArg<naRef>(0);
128     naRef object = ctx.getArg<naRef>(1, naNil());
129     
130     setCallback(new NasalCallback(func, object));
131 }
132
133 typedef boost::shared_ptr<FGFileDialog> FileDialogPtr;
134 typedef nasal::Ghost<FileDialogPtr> NasalFileDialog;
135
136 /**
137  * Create new FGFileDialog and get ghost for it.
138  */
139 static naRef f_createFileDialog(naContext c, naRef me, int argc, naRef* args)
140 {
141     nasal::CallContext ctx(c, argc, args);
142     FGFileDialog::Usage usage = (FGFileDialog::Usage) ctx.requireArg<int>(0);
143   
144 #ifdef SG_MAC
145     FileDialogPtr fd(new CocoaFileDialog(usage));
146 #else
147     FileDialogPtr fd(new PUIFileDialog(usage));
148 #endif
149     
150     return NasalFileDialog::create(c, fd);
151 }
152
153 void postinitNasalGUI(naRef globals, naContext c)
154 {
155     NasalFileDialog::init("gui._FileDialog")
156     .member("title", &FGFileDialog::getTitle,  &FGFileDialog::setTitle)
157     .member("button", &FGFileDialog::getButton,  &FGFileDialog::setButton)
158     .member("directory", &FGFileDialog::getDirectory, &FGFileDialog::setDirectory)
159     .member("show_hidden", &FGFileDialog::showHidden, &FGFileDialog::setShowHidden)
160     .member("placeholder", &FGFileDialog::getPlaceholder, &FGFileDialog::setPlaceholderName)
161     .member("pattern", &FGFileDialog::filterPatterns, &FGFileDialog::setFilterPatterns)
162     .method("open", &FGFileDialog::exec)
163     .method("close", &FGFileDialog::close)
164     .method("setCallback", &FGFileDialog::setCallbackFromNasal);
165
166     nasal::Hash guiModule = nasal::Hash(globals, c).get<nasal::Hash>("gui");
167     
168     guiModule.set("FILE_DIALOG_OPEN_FILE", (int) FGFileDialog::USE_OPEN_FILE);
169     guiModule.set("FILE_DIALOG_SAVE_FILE", (int) FGFileDialog::USE_SAVE_FILE);
170     guiModule.set("FILE_DIALOG_CHOOSE_DIR", (int) FGFileDialog::USE_CHOOSE_DIR);
171     guiModule.set("_createFileDialog", f_createFileDialog);
172 }