mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
5198e1d9a3
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8498 a592a061-630c-0410-9148-cb99ea01b6c8
121 lines
2.6 KiB
C++
121 lines
2.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetbranch.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Martin Vermeer
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSETBRANCH_H
|
|
#define INSETBRANCH_H
|
|
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
class BranchList;
|
|
|
|
|
|
struct InsetBranchParams {
|
|
explicit InsetBranchParams(std::string const & b = std::string())
|
|
: branch(b) {}
|
|
///
|
|
void write(std::ostream & os) const;
|
|
///
|
|
void read(LyXLex & lex);
|
|
///
|
|
std::string branch;
|
|
};
|
|
|
|
|
|
/** The Branch inset for alternative, conditional output.
|
|
|
|
*/
|
|
class InsetBranch : public InsetCollapsable {
|
|
public:
|
|
///
|
|
InsetBranch(BufferParams const &, InsetBranchParams const &);
|
|
/// Copy constructor
|
|
InsetBranch(InsetBranch const &);
|
|
///
|
|
~InsetBranch();
|
|
///
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
///
|
|
std::string const editMessage() const;
|
|
///
|
|
InsetOld::Code lyxCode() const { return InsetOld::BRANCH_CODE; }
|
|
///
|
|
void write(Buffer const &, std::ostream &) const;
|
|
///
|
|
void read(Buffer const & buf, LyXLex & lex);
|
|
///
|
|
void setButtonLabel();
|
|
///
|
|
bool showInsetDialog(BufferView *) const;
|
|
///
|
|
int latex(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
///
|
|
int docbook(Buffer const &, std::ostream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const & runparams) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
InsetBranchParams const & params() const { return params_; }
|
|
///
|
|
void setParams(InsetBranchParams const & params) { params_ = params; }
|
|
|
|
/** \returns true if params_.branch is listed as 'selected' in
|
|
\c branchlist.
|
|
*/
|
|
bool isBranchSelected(BranchList const & branchlist) const;
|
|
|
|
protected:
|
|
///
|
|
virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
|
|
private:
|
|
friend class InsetBranchParams;
|
|
|
|
/// used by the constructors
|
|
void init();
|
|
///
|
|
InsetBranchParams params_;
|
|
};
|
|
|
|
#include "mailinset.h"
|
|
|
|
class InsetBranchMailer : public MailInset {
|
|
public:
|
|
///
|
|
InsetBranchMailer(InsetBranch & inset);
|
|
///
|
|
virtual InsetBase & inset() const { return inset_; }
|
|
///
|
|
virtual std::string const & name() const { return name_; }
|
|
///
|
|
virtual std::string const inset2string(Buffer const &) const;
|
|
///
|
|
static std::string const params2string(InsetBranchParams const &);
|
|
///
|
|
static void string2params(std::string const &, InsetBranchParams &);
|
|
|
|
private:
|
|
///
|
|
static std::string const name_;
|
|
///
|
|
InsetBranch & inset_;
|
|
};
|
|
|
|
|
|
|
|
#endif
|