2000-03-08 13:52:57 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
|
* \file InsetCollapsable.h
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
|
* \author Alejandro Aguilar Sierra
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef INSETCOLLAPSABLE_H
|
|
|
|
|
#define INSETCOLLAPSABLE_H
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
|
#include "Inset.h"
|
2007-04-25 01:24:38 +00:00
|
|
|
|
#include "InsetText.h"
|
2007-08-13 12:13:17 +00:00
|
|
|
|
#include "TextClass.h"
|
2003-09-07 01:45:40 +00:00
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
|
#include "Box.h"
|
2007-04-29 18:17:15 +00:00
|
|
|
|
#include "Font.h"
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
2006-10-08 08:47:26 +00:00
|
|
|
|
#include <string>
|
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
|
2007-04-29 23:33:02 +00:00
|
|
|
|
class Text;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
class Paragraph;
|
2004-01-13 14:13:51 +00:00
|
|
|
|
class CursorSlice;
|
2007-08-13 12:13:17 +00:00
|
|
|
|
class InsetLayout;
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
namespace frontend { class Painter; }
|
2006-06-20 08:39:16 +00:00
|
|
|
|
|
2001-07-23 09:11:14 +00:00
|
|
|
|
/** A collapsable text inset
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2000-03-08 13:52:57 +00:00
|
|
|
|
*/
|
2004-03-25 09:16:36 +00:00
|
|
|
|
class InsetCollapsable : public InsetText {
|
2000-03-08 13:52:57 +00:00
|
|
|
|
public:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
|
|
|
|
static int const TEXT_TO_TOP_OFFSET = 2;
|
|
|
|
|
///
|
|
|
|
|
static int const TEXT_TO_BOTTOM_OFFSET = 2;
|
2003-12-02 07:15:42 +00:00
|
|
|
|
///
|
2007-08-16 16:36:50 +00:00
|
|
|
|
InsetCollapsable(BufferParams const &, CollapseStatus status = Inset::Open);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2006-12-05 05:36:59 +00:00
|
|
|
|
InsetCollapsable(InsetCollapsable const & rhs);
|
|
|
|
|
///
|
2007-04-30 14:39:09 +00:00
|
|
|
|
docstring name() const { return from_ascii("Collapsable"); }
|
2007-04-29 12:32:14 +00:00
|
|
|
|
///
|
2007-08-13 12:13:17 +00:00
|
|
|
|
void setLayout(BufferParams const &);
|
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
|
void read(Buffer const &, Lexer &);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void write(Buffer const &, std::ostream &) const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2006-11-28 15:15:49 +00:00
|
|
|
|
bool metrics(MetricsInfo &, Dimension &) const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2004-11-30 01:59:49 +00:00
|
|
|
|
void drawSelection(PainterInfo & pi, int x, int y) const;
|
|
|
|
|
/// return x,y of given position relative to the inset's baseline
|
2006-10-17 16:23:27 +00:00
|
|
|
|
void cursorPos(BufferView const & bv, CursorSlice const & sl,
|
|
|
|
|
bool boundary, int & x, int & y) const;
|
2004-11-30 01:59:49 +00:00
|
|
|
|
///
|
2005-04-22 08:57:22 +00:00
|
|
|
|
bool hitButton(FuncRequest const &) const;
|
2003-07-30 14:43:14 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
docstring const getNewLabel(docstring const & l) const;
|
2003-12-01 14:51:52 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
EDITABLE editable() const;
|
2003-11-10 11:26:33 +00:00
|
|
|
|
/// can we go further down on mouse click?
|
2003-12-02 07:15:42 +00:00
|
|
|
|
bool descendable() const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
|
void setLabel(docstring const & l);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2004-02-13 11:05:29 +00:00
|
|
|
|
virtual void setButtonLabel() {}
|
2004-04-03 08:37:12 +00:00
|
|
|
|
///
|
2007-08-13 12:13:17 +00:00
|
|
|
|
void setLabelFont(Font const & f);
|
2001-04-27 14:03:25 +00:00
|
|
|
|
///
|
2007-08-16 16:36:50 +00:00
|
|
|
|
bool isOpen() const { return geometry() != ButtonOnly; }
|
2003-12-02 07:15:42 +00:00
|
|
|
|
///
|
2007-08-16 16:36:50 +00:00
|
|
|
|
bool inlined() const { return decoration() == Minimalistic|| decoration() == Conglomerate; }
|
2003-10-21 13:04:14 +00:00
|
|
|
|
///
|
2005-09-28 15:02:47 +00:00
|
|
|
|
CollapseStatus status() const;
|
2007-08-16 16:36:50 +00:00
|
|
|
|
/** Of the old CollapseStatus we only keep the values
|
|
|
|
|
* Open and Collapsed.
|
|
|
|
|
* We define a list of possible inset decoration
|
|
|
|
|
* styles, and a list of possible (concrete, visual)
|
|
|
|
|
* inset geometries. Relationships between them
|
|
|
|
|
* (geometries in body of table):
|
|
|
|
|
*
|
|
|
|
|
* \ CollapseStatus:
|
|
|
|
|
* Decoration: \ Open Collapsed
|
|
|
|
|
* -------------+-------------------------------
|
|
|
|
|
* Classic | *) TopButton, <--x) ButtonOnly
|
|
|
|
|
* | LeftButton
|
|
|
|
|
* Minimalistic | NoButton NoButton
|
|
|
|
|
* Conglomerate | SubLabel Corners
|
|
|
|
|
* ---------------------------------------------
|
|
|
|
|
* *) toggled by openinlined_
|
|
|
|
|
* x) toggled by autoOpen_
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
enum Decoration {
|
|
|
|
|
Classic,
|
|
|
|
|
Minimalistic,
|
|
|
|
|
Conglomerate
|
|
|
|
|
};
|
|
|
|
|
/// Default looks
|
|
|
|
|
virtual Decoration decoration() const { return Classic; }
|
|
|
|
|
///
|
|
|
|
|
enum Geometry {
|
|
|
|
|
TopButton,
|
|
|
|
|
ButtonOnly,
|
|
|
|
|
NoButton,
|
|
|
|
|
LeftButton,
|
|
|
|
|
SubLabel,
|
|
|
|
|
Corners
|
|
|
|
|
};
|
|
|
|
|
/// Returns the geometry based on CollapseStatus
|
|
|
|
|
/// (status_), autoOpen_ and openinlined_, and of
|
|
|
|
|
/// course decoration().
|
|
|
|
|
Geometry geometry() const;
|
2001-07-24 22:08:49 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool allowSpellCheck() const { return true; }
|
2005-04-22 08:57:22 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
2003-10-17 18:01:15 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void setStatus(Cursor & cur, CollapseStatus st);
|
2006-12-04 04:31:18 +00:00
|
|
|
|
///
|
|
|
|
|
bool setMouseHover(bool mouse_hover);
|
2007-08-20 19:02:38 +00:00
|
|
|
|
///
|
|
|
|
|
int latex(Buffer const &, odocstream &,
|
|
|
|
|
OutputParams const &) const;
|
2007-08-22 18:55:03 +00:00
|
|
|
|
///
|
|
|
|
|
void validate(LaTeXFeatures &) const;
|
2005-07-14 17:30:24 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2004-03-18 13:57:20 +00:00
|
|
|
|
///
|
2004-11-30 01:59:49 +00:00
|
|
|
|
Dimension dimensionCollapsed() const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-09-16 15:39:33 +00:00
|
|
|
|
Box const & buttonDim() const;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
|
void edit(Cursor & cur, bool left);
|
2003-11-04 12:36:59 +00:00
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
|
Inset * editXY(Cursor & cur, int x, int y);
|
2005-05-06 20:00:31 +00:00
|
|
|
|
///
|
2007-02-16 09:11:19 +00:00
|
|
|
|
docstring floatName(std::string const & type, BufferParams const &) const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-12-12 14:02:14 +00:00
|
|
|
|
protected:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-07-30 14:43:14 +00:00
|
|
|
|
mutable Box button_dim;
|
2001-07-31 09:53:40 +00:00
|
|
|
|
///
|
|
|
|
|
mutable int topx;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
///
|
2001-07-31 09:53:40 +00:00
|
|
|
|
mutable int topbaseline;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2007-08-13 12:13:17 +00:00
|
|
|
|
mutable InsetLayout layout_;
|
2007-08-19 15:45:35 +00:00
|
|
|
|
///
|
|
|
|
|
CollapseStatus internalStatus() const { return status_; }
|
2004-01-30 11:41:12 +00:00
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
mutable CollapseStatus status_;
|
2004-03-10 08:50:46 +00:00
|
|
|
|
/// a substatus of the Open status, determined automatically in metrics
|
|
|
|
|
mutable bool openinlined_;
|
2005-09-28 15:02:47 +00:00
|
|
|
|
/// the inset will automatically open when the cursor is inside
|
|
|
|
|
mutable bool autoOpen_;
|
2004-03-27 13:29:17 +00:00
|
|
|
|
///
|
|
|
|
|
mutable Dimension textdim_;
|
2006-12-04 04:31:18 +00:00
|
|
|
|
/// changes color when mouse enters/leaves this inset
|
|
|
|
|
bool mouse_hover_;
|
2000-03-08 13:52:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-03-31 08:43:47 +00:00
|
|
|
|
// A helper function that pushes the cursor out of the inset.
|
2007-04-29 13:39:47 +00:00
|
|
|
|
void leaveInset(Cursor & cur, Inset const & in);
|
2004-03-31 08:43:47 +00:00
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2000-03-08 13:52:57 +00:00
|
|
|
|
#endif
|