X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fconverter.h;h=943e03e9a361497cd2da749a5b80fffacd1391f1;hb=f268743f8c014ef2dadd260fd1a3873cb1d2038b;hp=77dc9723d031568d49a624a5c390119ebf5dd3a4;hpb=57e89ae2bfa4c0cee3d6d8feee11651b3d37d54d;p=lyx.git diff --git a/src/converter.h b/src/converter.h index 77dc9723d0..943e03e9a3 100644 --- a/src/converter.h +++ b/src/converter.h @@ -1,150 +1,33 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file converter.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Dekel Tsur * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef CONVERTER_H #define CONVERTER_H -#ifdef __GNUG__ -#pragma interface -#endif +#include "latexrunparams.h" +#include "graph.h" #include -#include -#include "LString.h" -#include "support/lstrings.h" - -class Buffer; - -/// -class Format { -public: - /// - Format(string const & n, string const & e, string const & p, - string const & s, string const & v) : - name_(n), extension_(e), prettyname_(p), shortcut_(s), - viewer_(v) {}; - /// - bool dummy() const; - /// - bool isChildFormat() const; - /// - string const parentFormat() const; - /// - string const & name() const { - return name_; - } - /// - string const & extension() const { - return extension_; - } - /// - string const & prettyname() const { - return prettyname_; - } - /// - string const & shortcut() const { - return shortcut_; - } - /// - string const & viewer() const { - return viewer_; - } - /// - void setViewer(string const & v) { - viewer_ = v; - } -private: - string name_; - /// - string extension_; - /// - string prettyname_; - /// - string shortcut_; - /// - string viewer_; -}; - - -inline -bool operator<(Format const & a, Format const & b) -{ - // use the compare_ascii_no_case instead of compare_no_case, - // because in turkish, 'i' is not the lowercase version of 'I', - // and thus turkish locale breaks parsing of tags. - return compare_ascii_no_case(a.prettyname(), b.prettyname()) < 0; -} +class Format; +class Formats; - -/// -class Formats { -public: - /// - typedef std::vector FormatList; - /// - typedef FormatList::const_iterator const_iterator; - /// - Format const & get(FormatList::size_type i) const { - return formatlist[i]; - } - /// - Format const * getFormat(string const & name) const; - /// - int getNumber(string const & name) const; - /// - void add(string const & name); - /// - void add(string const & name, string const & extension, - string const & prettyname, string const & shortcut); - /// - void erase(string const & name); - /// - void sort(); - /// - void setViewer(string const & name, string const & command); - /// - bool view(Buffer const * buffer, string const & filename, - string const & format_name) const; - /// - string const prettyName(string const & name) const; - /// - string const extension(string const & name) const; - /// - const_iterator begin() const { - return formatlist.begin(); - } - /// - const_iterator end() const { - return formatlist.end(); - } - /// - FormatList::size_type size() const { - return formatlist.size(); - } -private: - /// - FormatList formatlist; -}; - -/////////////////////////////////////////////////////////////////////// +class Buffer; /// class Converter { public: /// Converter(string const & f, string const & t, string const & c, - string const & l) - : from(f), to(t), command(c), flags(l), From(0), To(0), - latex(false), original_dir(false), need_aux(false) {} + string const & l); /// void readFlags(); /// @@ -180,12 +63,13 @@ public: /// class Converters { public: + /// + typedef std::vector EdgePath; // to be removed SOON + /// typedef std::vector ConverterList; /// typedef ConverterList::const_iterator const_iterator; /// - typedef std::vector EdgePath; - /// Converter const & get(int i) const { return converterlist_[i]; } @@ -210,9 +94,9 @@ public: /// bool isReachable(string const & from, string const & to); /// - EdgePath const getPath(string const & from, string const & to); + Graph::EdgePath const getPath(string const & from, string const & to); /// - bool usePdflatex(EdgePath const & path); + bool usePdflatex(Graph::EdgePath const & path); /// bool convert(Buffer const * buffer, string const & from_file, string const & to_file_base, @@ -223,18 +107,10 @@ public: string const & from_file, string const & to_file_base, string const & from_format, string const & to_format); /// - string const papersize(Buffer const * buffer); - /// - string const dvips_options(Buffer const * buffer); - /// - string const dvipdfm_options(Buffer const * buffer); - /// void update(Formats const & formats); /// void updateLast(Formats const & formats); /// - void buildGraph(); - /// bool formatIsUsed(string const & format); /// const_iterator begin() const { @@ -243,39 +119,30 @@ public: const_iterator end() const { return converterlist_.end(); } + /// + void buildGraph(); private: /// - bool scanLog(Buffer const * buffer, string const & command, + std::vector const + Converters::intToFormat(std::vector const & input); + /// + bool scanLog(Buffer const & buffer, string const & command, string const & filename); /// - bool runLaTeX(Buffer const * buffer, string const & command); + bool runLaTeX(Buffer const & buffer, string const & command, + LatexRunParams const &); /// ConverterList converterlist_; /// string latex_command_; /// - struct Vertex { - std::vector in_vertices; - std::vector out_vertices; - std::vector out_edges; - }; - /// - static - std::vector vertices_; - /// - std::vector visited_; - /// - std::queue Q_; - /// - int bfs_init(string const & start, bool clear_visited = true); - /// bool move(string const & from, string const & to, bool copy); + /// + Graph G_; }; -extern Formats formats; extern Converters converters; -extern Formats system_formats; extern Converters system_converters; -#endif +#endif //CONVERTER_H