]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormFiledialog.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormFiledialog.h
1 // -*- C++ -*-
2 /**
3  * \file FormFiledialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS
11  */
12
13 #ifndef FORMFILEDIALOG_H
14 #define FORMFILEDIALOG_H
15
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include "LString.h"
22
23 #include "forms_fwd.h"
24
25 #include "frontends/FileDialog.h"
26
27 #include <boost/signals/connection.hpp>
28 #include <boost/signals/trackable.hpp>
29
30 #include <vector>
31
32 class Dialogs;
33
34 /// DirEntry internal structure definition
35 class DirEntry {
36 public:
37         ///
38         string name_;
39         ///
40         string displayed_;
41         ///
42         string ls_entry_;
43 };
44
45
46 //extern "C" {
47 //      void C_LyXFileDlg_FileDlgCB(FL_OBJECT * ob, long data);
48 //      void C_LyXFileDlg_DoubleClickCB(FL_OBJECT * ob, long data);
49 //      int C_LyXFileDlg_CancelCB(FL_FORM *fl, void *xev);
50 //}
51
52
53 class FD_filedialog;
54
55 class FileDialog::Private : public boost::signals::trackable {
56 public:
57         ///
58         Private(Dialogs &);
59         ///
60         ~Private();
61
62         /// sets file selector user button action
63         void SetButton(int iIndex, string const & pszName = string(),
64                        string const & pszPath = string());
65         /// gets last dialog directory
66         string const GetDirectory() const;
67         /// launches dialog and returns selected file
68         string const Select(string const & pszTitle = string(),
69                        string const & pszPath = string(),
70                        string const & pszMask = string(),
71                        string const & pszSuggested = string());
72         /// XForms objects callback (static)
73         static void FileDlgCB(FL_OBJECT *, long);
74         /// Callback for double click in list
75         static void DoubleClickCB(FL_OBJECT *, long);
76         /// Handle Cancel CB from WM close
77         static int CancelCB(FL_FORM *, void *);
78
79 private:
80         /// data
81         static FD_filedialog * file_dlg_form_;
82         ///
83         static FileDialog::Private * current_dlg_;
84         ///
85         string user_path1_;
86         ///
87         string user_path2_;
88         ///
89         string directory_;
90         ///
91         string mask_;
92         ///
93         string file_name_;
94         ///
95         int depth_;
96         ///
97         int last_sel_;
98         ///
99         long last_time_;
100         ///
101         string info_line_;
102         ///
103         typedef std::vector<DirEntry> DirEntries;
104         ///
105         DirEntries dir_entries_;
106         ///
107         bool force_cancel_;
108         ///
109         bool force_ok_;
110
111         /** Redraw the form (on receipt of a Signal indicating, for example,
112             that the xform colors have been re-mapped).
113         */
114         void redraw();
115         /// updates dialog list to match class directory
116         void Reread();
117         /// sets dialog current directory
118         void SetDirectory(string const & pszPath);
119         /// sets dialog file mask
120         void SetMask(string const & pszNewMask);
121         /// sets dialog information line
122         void SetInfoLine(string const & pszLine);
123         /// handle dialog during file selection
124         bool RunDialog();
125         /// Handle callback from list
126         void HandleListHit();
127         /// Handle double click from list
128         bool HandleDoubleClick();
129         /// Handle OK button call
130         bool HandleOK();
131         /// Simulates a click on OK/Cancel
132         void Force(bool);
133         /// Redraw connection.
134         boost::signals::connection r_;
135 };
136
137 #endif // FORMFILEDIALOG_H