mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
44cd0fc9a1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
125 lines
2.4 KiB
C++
125 lines
2.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file format.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Dekel Tsur
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FORMAT_H
|
|
#define FORMAT_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
class Buffer;
|
|
|
|
class Format {
|
|
public:
|
|
///
|
|
Format(std::string const & n, std::string const & e, std::string const & p,
|
|
std::string const & s, std::string const & v);
|
|
///
|
|
bool dummy() const;
|
|
///
|
|
bool isChildFormat() const;
|
|
///
|
|
std::string const parentFormat() const;
|
|
///
|
|
std::string const & name() const {
|
|
return name_;
|
|
}
|
|
///
|
|
std::string const & extension() const {
|
|
return extension_;
|
|
}
|
|
///
|
|
std::string const & prettyname() const {
|
|
return prettyname_;
|
|
}
|
|
///
|
|
std::string const & shortcut() const {
|
|
return shortcut_;
|
|
}
|
|
///
|
|
std::string const & viewer() const {
|
|
return viewer_;
|
|
}
|
|
///
|
|
void setViewer(std::string const & v) {
|
|
viewer_ = v;
|
|
}
|
|
private:
|
|
std::string name_;
|
|
///
|
|
std::string extension_;
|
|
///
|
|
std::string prettyname_;
|
|
///
|
|
std::string shortcut_;
|
|
///
|
|
std::string viewer_;
|
|
};
|
|
|
|
|
|
bool operator<(Format const & a, Format const & b);
|
|
|
|
///
|
|
class Formats {
|
|
public:
|
|
///
|
|
typedef std::vector<Format> FormatList;
|
|
///
|
|
typedef FormatList::const_iterator const_iterator;
|
|
///
|
|
Format const & get(FormatList::size_type i) const {
|
|
return formatlist[i];
|
|
}
|
|
///
|
|
Format const * getFormat(std::string const & name) const;
|
|
///
|
|
int getNumber(std::string const & name) const;
|
|
///
|
|
void add(std::string const & name);
|
|
///
|
|
void add(std::string const & name, std::string const & extension,
|
|
std::string const & prettyname, std::string const & shortcut);
|
|
///
|
|
void erase(std::string const & name);
|
|
///
|
|
void sort();
|
|
///
|
|
void setViewer(std::string const & name, std::string const & command);
|
|
///
|
|
bool view(Buffer const & buffer, std::string const & filename,
|
|
std::string const & format_name) const;
|
|
///
|
|
std::string const prettyName(std::string const & name) const;
|
|
///
|
|
std::string const extension(std::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;
|
|
};
|
|
|
|
extern Formats formats;
|
|
|
|
extern Formats system_formats;
|
|
|
|
#endif //FORMAT_H
|