]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormFiledialog.h
* disable loading of xpm files by the xforms image loader.
[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         static int minw_;
86         ///
87         static int minh_;
88         ///
89         string user_path1_;
90         ///
91         string user_path2_;
92         ///
93         string directory_;
94         ///
95         string mask_;
96         ///
97         string file_name_;
98         ///
99         int depth_;
100         ///
101         int last_sel_;
102         ///
103         long last_time_;
104         ///
105         string info_line_;
106         ///
107         typedef std::vector<DirEntry> DirEntries;
108         ///
109         DirEntries dir_entries_;
110         ///
111         bool force_cancel_;
112         ///
113         bool force_ok_;
114
115         /** Redraw the form (on receipt of a Signal indicating, for example,
116             that the xform colors have been re-mapped).
117         */
118         void redraw();
119         /// updates dialog list to match class directory
120         void Reread();
121         /// sets dialog current directory
122         void SetDirectory(string const & pszPath);
123         /// sets dialog file mask
124         void SetMask(string const & pszNewMask);
125         /// sets dialog information line
126         void SetInfoLine(string const & pszLine);
127         /// handle dialog during file selection
128         bool RunDialog();
129         /// Handle callback from list
130         void HandleListHit();
131         /// Handle double click from list
132         bool HandleDoubleClick();
133         /// Handle OK button call
134         bool HandleOK();
135         /// Simulates a click on OK/Cancel
136         void Force(bool);
137         /// Redraw connection.
138         boost::signals::connection r_;
139 };
140
141 #endif // FORMFILEDIALOG_H