2003-08-17 11:28:23 +00:00
|
|
|
// -*- 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
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-17 11:28:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSETBRANCH_H
|
|
|
|
#define INSETBRANCH_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "insetcollapsable.h"
|
|
|
|
|
2003-12-14 16:33:56 +00:00
|
|
|
class BranchList;
|
|
|
|
|
|
|
|
|
|
|
|
struct InsetBranchParams {
|
|
|
|
explicit InsetBranchParams(std::string const & b = std::string())
|
|
|
|
: branch(b) {}
|
2003-08-28 07:41:31 +00:00
|
|
|
///
|
|
|
|
void write(std::ostream & os) const;
|
|
|
|
///
|
|
|
|
void read(LyXLex & lex);
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string branch;
|
2003-12-14 16:33:56 +00:00
|
|
|
};
|
2003-08-28 07:41:31 +00:00
|
|
|
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
/** The Branch inset for alternative, conditional output.
|
|
|
|
|
|
|
|
*/
|
|
|
|
class InsetBranch : public InsetCollapsable {
|
|
|
|
public:
|
|
|
|
///
|
2003-12-14 16:33:56 +00:00
|
|
|
InsetBranch(BufferParams const &, InsetBranchParams const &);
|
2003-08-28 07:41:31 +00:00
|
|
|
/// Copy constructor
|
|
|
|
InsetBranch(InsetBranch const &);
|
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
~InsetBranch();
|
2003-08-28 07:41:31 +00:00
|
|
|
///
|
2003-08-17 11:28:23 +00:00
|
|
|
virtual std::auto_ptr<InsetBase> clone() const;
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const editMessage() const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
|
|
|
InsetOld::Code lyxCode() const { return InsetOld::BRANCH_CODE; }
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
void write(Buffer const &, std::ostream &) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
void read(Buffer const & buf, LyXLex & lex);
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
|
|
|
void setButtonLabel();
|
|
|
|
///
|
|
|
|
bool showInsetDialog(BufferView *) const;
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
int latex(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
int linuxdoc(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-10-31 18:45:43 +00:00
|
|
|
int docbook(Buffer const &, std::ostream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const & runparams) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-11-05 12:06:20 +00:00
|
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
|
|
OutputParams const & runparams) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
|
|
|
void validate(LaTeXFeatures &) const;
|
|
|
|
///
|
|
|
|
InsetBranchParams const & params() const { return params_; }
|
|
|
|
///
|
|
|
|
void setParams(InsetBranchParams const & params) { params_ = params; }
|
2003-12-14 16:33:56 +00:00
|
|
|
|
|
|
|
/** \returns true if params_.branch is listed as 'selected' in
|
|
|
|
\c branchlist.
|
|
|
|
*/
|
|
|
|
bool isBranchSelected(BranchList const & branchlist) const;
|
|
|
|
|
2003-10-17 18:01:15 +00:00
|
|
|
protected:
|
|
|
|
///
|
2004-02-16 11:58:51 +00:00
|
|
|
virtual void priv_dispatch(LCursor & cur, FuncRequest const & cmd);
|
2003-08-17 11:28:23 +00:00
|
|
|
private:
|
|
|
|
friend class InsetBranchParams;
|
|
|
|
|
|
|
|
/// used by the constructors
|
|
|
|
void init();
|
|
|
|
///
|
|
|
|
InsetBranchParams params_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "mailinset.h"
|
|
|
|
|
|
|
|
class InsetBranchMailer : public MailInset {
|
|
|
|
public:
|
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
InsetBranchMailer(InsetBranch & inset);
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
|
|
|
virtual InsetBase & inset() const { return inset_; }
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const & name() const { return name_; }
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
static std::string const params2string(InsetBranchParams const &);
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
static void string2params(std::string const &, InsetBranchParams &);
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
static std::string const name_;
|
2003-08-17 11:28:23 +00:00
|
|
|
///
|
|
|
|
InsetBranch & inset_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|