mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
891bb08e37
Natbib users can now use the before field. file format is up to 230. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8479 a592a061-630c-0410-9148-cb99ea01b6c8
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetcommandparams.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETCOMMANDPARAMS_H
|
|
#define INSETCOMMANDPARAMS_H
|
|
|
|
#include <string>
|
|
#include <iosfwd>
|
|
|
|
|
|
class LyXLex;
|
|
|
|
|
|
class InsetCommandParams {
|
|
public:
|
|
///
|
|
InsetCommandParams();
|
|
///
|
|
explicit InsetCommandParams(std::string const & n,
|
|
std::string const & c = std::string(),
|
|
std::string const & o = std::string(),
|
|
std::string const & s = std::string());
|
|
///
|
|
void read(LyXLex &);
|
|
/// Parse the command
|
|
void scanCommand(std::string const &);
|
|
///
|
|
void write(std::ostream &) const;
|
|
/// Build the complete LaTeX command
|
|
std::string const getCommand() const;
|
|
///
|
|
std::string const & getCmdName() const { return cmdname; }
|
|
///
|
|
std::string const & getOptions() const { return options; }
|
|
///
|
|
std::string const & getSecOptions() const { return sec_options; }
|
|
///
|
|
std::string const & getContents() const { return contents; }
|
|
///
|
|
void setCmdName(std::string const & n) { cmdname = n; }
|
|
///
|
|
void setOptions(std::string const & o) { options = o; }
|
|
///
|
|
void setSecOptions(std::string const & s) { sec_options = s; }
|
|
///
|
|
void setContents(std::string const & c) { contents = c; }
|
|
///
|
|
bool preview() const { return preview_; }
|
|
///
|
|
void preview(bool p) { preview_ = p; }
|
|
|
|
private:
|
|
///
|
|
std::string cmdname;
|
|
///
|
|
std::string contents;
|
|
///
|
|
std::string options;
|
|
///
|
|
std::string sec_options;
|
|
///
|
|
bool preview_;
|
|
};
|
|
|
|
|
|
///
|
|
bool operator==(InsetCommandParams const &, InsetCommandParams const &);
|
|
|
|
///
|
|
bool operator!=(InsetCommandParams const &, InsetCommandParams const &);
|
|
|
|
#endif
|