]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlTexinfo.h
fix crash due to invalidated iterator
[lyx.git] / src / frontends / controllers / ControlTexinfo.h
index 7b9930e67835115b9be1080683de80bfd41e76c1..0b000e197a9ea3f84db15e767e884edae59454c1 100644 (file)
@@ -4,42 +4,58 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Herbert Voss
+ * \author Herbert Voß
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef CONTROLTEXINFO_H
 #define CONTROLTEXINFO_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "ControlDialog_impl.h"
-#include "LString.h"
+#include "Dialog.h"
+#include "tex_helpers.h"
+
+namespace lyx {
+namespace frontend {
 
 /** A controller for Texinfo dialogs. */
 
-class ControlTexinfo : public ControlDialogBI {
+class ControlTexinfo : public Dialog::Controller {
 public:
+       ///
+       ControlTexinfo(Dialog &);
+       /// Nothing to initialise in this case.
+       virtual bool initialiseParams(std::string const &) { return true; }
+       ///
+       virtual void clearParams() {}
+       ///
+       virtual void dispatchParams() {}
+       ///
+       virtual bool isBufferDependent() const { return false; }
+
+
        /// the file extensions
        enum texFileSuffix {cls, sty, bst};
-       ///
-       ControlTexinfo(LyXView &, Dialogs &);
        /// show contents af a file
-       void viewFile(string const filename) const;
+       void viewFile(std::string const & filename) const;
        /// show all classoptions
-       string const getClassOptions(string const & filename) const;
-       /// build new cls bst sty - lists
-       void rescanStyles() const;
-       /// build new bst sty cls lists
-       void runTexhash() const;
-       /// read filecontents
-       string const getContents(texFileSuffix type, bool withPath) const;
+       std::string const getClassOptions(std::string const & filename) const;
+       /// return file type as string
+       std::string const getFileType(ControlTexinfo::texFileSuffix type) const;
 private:
        ///
        virtual void apply() {}
 };
 
+
+/** Fill \c contents from one of the three texfiles.
+ *  Each entry in the file list is returned as a pair<name_with_path, name_only>
+ */
+void getTexFileList(ControlTexinfo::texFileSuffix type,
+                   std::vector<std::string> & contents, bool withPath);
+
+} // namespace frontend
+} // namespace lyx
+
 #endif // CONTROLTEXINFO_H