lyx_mirror/src/insets/InsetFloatList.h
Jean-Marc Lasgouttes 5d3461b10f Sort out usage of INset::has Settings and Inset::clickable
* now hasSettings only means... that the inset has a settings dialog
 * and clickable means that something should happen with left-clicking on the inset

Some inset behaviours are changed:
 * (V)Space insets are not clickable anymore (the settings dialog is still accessible via context menu and Edit menu)
 * TOC inset is now shown as active
 * FloatList inset is shown as active and clicking on it opens the relevant part of the TOC dialog

This could be a candidate for branch (2.0.4)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40755 a592a061-630c-0410-9148-cb99ea01b6c8
2012-02-15 09:42:13 +00:00

87 lines
1.8 KiB
C++

// -*- C++ -*-
/**
* \file InsetFloatList.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSET_FLOATLIST_H
#define INSET_FLOATLIST_H
#include "InsetCommand.h"
namespace lyx {
/** Used to insert table of contents
*/
class InsetFloatList : public InsetCommand {
public:
///
InsetFloatList(Buffer *);
///
InsetFloatList(Buffer *, std::string const & type);
/// \name Public functions inherited from Inset class
//@{
///
InsetCode lyxCode() const { return FLOAT_LIST_CODE; }
///
DisplayType display() const { return AlignCenter; }
///
void write(std::ostream &) const;
///
void read(Lexer &);
///
void latex(otexstream &, OutputParams const &) const;
///
int docbook(odocstream &, OutputParams const &) const { return 0; }
///
int plaintext(odocstream &, OutputParams const & runparams) const;
///
docstring xhtml(XHTMLStream &, OutputParams const &) const;
///
void doDispatch(Cursor & cur, FuncRequest & cmd);
///
bool clickable(int, int) const { return true; }
///
void validate(LaTeXFeatures & features) const;
//@}
/// \name Static public methods obligated for InsetCommand derived classes
//@{
///
static ParamInfo const & findInfo(std::string const &);
///
static std::string defaultCommand() { return "listoftables"; }
///
static bool isCompatibleCommand(std::string const & s);
//@}
private:
/// \name Private functions inherited from Inset class
//@{
///
Inset * clone() const { return new InsetFloatList(*this); }
//@}
/// \name Private functions inherited from InsetCommand class
//@{
///
docstring screenLabel() const;
//@}
///
static ParamInfo param_info_;
};
} // namespace lyx
#endif