mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 20:45:47 +00:00
c22fb327fc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10365 a592a061-630c-0410-9148-cb99ea01b6c8
62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file ControlTexinfo.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Herbert Voß
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef CONTROLTEXINFO_H
|
|
#define CONTROLTEXINFO_H
|
|
|
|
|
|
#include "Dialog.h"
|
|
#include "tex_helpers.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/** A controller for Texinfo dialogs. */
|
|
|
|
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};
|
|
/// show contents af a file
|
|
void viewFile(std::string const & filename) const;
|
|
/// show all classoptions
|
|
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
|