]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/FileDialog_private.h
implement getLabelList
[lyx.git] / src / frontends / kde / FileDialog_private.h
1 /**
2  * \file FileDialog_private.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #ifndef FILEDIALOG_PRIVATE_H
10 #define FILEDIALOG_PRIVATE_H
11
12 #include <config.h>
13
14 #include <kfiledialog.h>
15
16 #include "LString.h"
17 #include "lyxfunc.h" 
18
19 #include "frontends/FileDialog.h"
20
21 class LyXView;
22
23 class LyXKFileDialog : public KFileDialog
24 {
25 public:
26         LyXKFileDialog(LyXView * lv, kb_action a, string const & p, string const & m, string const & t);
27
28         friend class FileDialog;
29
30 protected:
31         virtual void done(int);
32
33 private:
34         LyXView * lv_;
35         int action_;
36 };
37
38 #endif // FILEDIALOG_PRIVATE_H