]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiTexinfo.h
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiTexinfo.h
1 // -*- C++ -*-
2 /**
3  * \file GuiTexInfo.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author Herbert Voß
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUITEXINFO_H
14 #define GUITEXINFO_H
15
16 #include "GuiDialog.h"
17 #include "ui_TexinfoUi.h"
18 #include "qt_helpers.h"
19
20 #include <map>
21 #include <vector>
22
23
24 namespace lyx {
25 namespace frontend {
26
27 class GuiTexInfo : public GuiDialog, public Ui::TexinfoUi
28 {
29         Q_OBJECT
30
31 public:
32         ///
33         GuiTexInfo(GuiView & lv);
34         /// the file extensions. order matters in GuiTexInfo::fileType()
35         enum TexFileType { ClsType, StyType, BstType };
36
37 public Q_SLOTS:
38         ///
39         void updateView();
40
41 private Q_SLOTS:
42         ///
43         void change_adaptor();
44         ///
45         void rescanClicked();
46         ///
47         void viewClicked();
48         ///
49         void enableViewPB();
50
51 private:
52         ///
53         void updateStyles(TexFileType);
54         ///
55         void updateStyles();
56         ///
57         bool warningPosted;
58         ///
59         TexFileType activeStyle;
60         /// Nothing to initialise in this case.
61         bool initialiseParams(std::string const &) { return true; }
62         ///
63         void clearParams() {}
64         ///
65         void dispatchParams() {}
66         ///
67         bool isBufferDependent() const { return false; }
68         ///
69         void apply() {}
70
71         /// show contents af a file
72         void viewFile(std::string const & filename) const;
73         /// show all classoptions
74         std::string classOptions(std::string const & filename) const;
75         /// return file type as string
76         std::string fileType(TexFileType type) const;
77
78         typedef std::vector<std::string> ContentsType;
79         std::map<TexFileType, ContentsType> texdata_;
80 };
81
82
83 } // namespace frontend
84 } // namespace lyx
85
86 #endif // GUITEXINFO_H