lyx_mirror/src/frontends/controllers/ControlTexinfo.h
Lars Gullik Bjønnes 44cd0fc9a1 The std::string mammoth path.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7862 a592a061-630c-0410-9148-cb99ea01b6c8
2003-10-06 15:43:21 +00:00

54 lines
1.3 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"
/** 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;
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);
#endif // CONTROLTEXINFO_H