2000-03-08 13:52:57 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetcollapsable.h
|
|
|
|
|
* 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
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
|
#include "inset.h"
|
2001-03-30 14:28:17 +00:00
|
|
|
|
#include "insettext.h"
|
2003-09-07 01:45:40 +00:00
|
|
|
|
|
2003-07-30 14:43:14 +00:00
|
|
|
|
#include "box.h"
|
2003-09-07 01:45:40 +00:00
|
|
|
|
#include "lyxfont.h"
|
2000-03-08 13:52:57 +00:00
|
|
|
|
|
|
|
|
|
class Painter;
|
2000-07-04 11:30:07 +00:00
|
|
|
|
class LyXText;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
class Paragraph;
|
2004-01-13 14:13:51 +00:00
|
|
|
|
class CursorSlice;
|
2000-03-08 13:52:57 +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
|
|
|
|
*/
|
2000-07-04 11:30:07 +00:00
|
|
|
|
class InsetCollapsable : public UpdatableInset {
|
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
|
|
|
|
///
|
|
|
|
|
enum CollapseStatus {
|
|
|
|
|
Open,
|
|
|
|
|
Collapsed,
|
|
|
|
|
Inlined
|
|
|
|
|
};
|
2003-12-12 14:02:14 +00:00
|
|
|
|
///
|
|
|
|
|
InsetCollapsable(BufferParams const &, CollapseStatus status = Open);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-05-26 09:13:55 +00:00
|
|
|
|
InsetCollapsable(InsetCollapsable const & in);
|
|
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
|
void read(Buffer const &, LyXLex &);
|
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
|
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
|
void 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
|
|
|
|
///
|
2003-07-30 14:43:14 +00:00
|
|
|
|
bool hitButton(FuncRequest const &) const;
|
|
|
|
|
///
|
2003-12-01 14:51:52 +00:00
|
|
|
|
std::string const getNewLabel(std::string const & l) const;
|
|
|
|
|
///
|
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
|
|
|
|
///
|
2003-11-10 09:06:48 +00:00
|
|
|
|
bool insetAllowed(InsetOld::Code code) const;
|
2001-07-09 14:19:41 +00:00
|
|
|
|
///
|
2003-11-10 09:06:48 +00:00
|
|
|
|
bool isTextInset() const { return true; }
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
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;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-11-05 12:06:20 +00:00
|
|
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
|
|
|
OutputParams const &) const;
|
2001-04-02 14:02:58 +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;
|
2001-04-02 14:02:58 +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;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
|
void validate(LaTeXFeatures & features) const;
|
2003-11-10 09:06:48 +00:00
|
|
|
|
/// get the screen x,y of the cursor
|
2004-01-08 18:30:14 +00:00
|
|
|
|
void getCursorPos(int cell, int & x, int & y) const;
|
2001-07-20 14:18:48 +00:00
|
|
|
|
///
|
2003-12-12 14:02:14 +00:00
|
|
|
|
void setLabel(std::string const & l);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-12-12 14:02:14 +00:00
|
|
|
|
virtual void setButtonLabel() {};
|
|
|
|
|
///
|
2003-09-16 15:39:33 +00:00
|
|
|
|
void setLabelFont(LyXFont & f);
|
2003-09-18 20:18:39 +00:00
|
|
|
|
/// Appends \c list with all labels found within this inset.
|
2003-10-06 15:43:21 +00:00
|
|
|
|
void getLabelList(Buffer const &, std::vector<std::string> & list) const;
|
2001-04-27 14:03:25 +00:00
|
|
|
|
///
|
|
|
|
|
int scroll(bool recursive=true) const;
|
2001-05-08 10:50:09 +00:00
|
|
|
|
///
|
2003-09-16 15:39:33 +00:00
|
|
|
|
void scroll(BufferView *bv, float sx) const;
|
2001-05-08 10:50:09 +00:00
|
|
|
|
///
|
2003-09-16 15:39:33 +00:00
|
|
|
|
void scroll(BufferView *bv, int offset) const;
|
2001-07-06 15:57:54 +00:00
|
|
|
|
///
|
2003-11-01 09:56:18 +00:00
|
|
|
|
int numParagraphs() const;
|
|
|
|
|
///
|
2003-10-14 13:01:49 +00:00
|
|
|
|
LyXText * getText(int) const;
|
|
|
|
|
///
|
2003-12-02 07:15:42 +00:00
|
|
|
|
bool isOpen() const { return status_ == Open || status_ == Inlined; }
|
|
|
|
|
///
|
|
|
|
|
bool inlined() const { return status_ == Inlined; }
|
2003-10-21 13:04:14 +00:00
|
|
|
|
///
|
2003-12-02 07:15:42 +00:00
|
|
|
|
CollapseStatus status() const { return status_; }
|
2001-07-24 22:08:49 +00:00
|
|
|
|
///
|
2003-11-21 17:26:11 +00:00
|
|
|
|
void open();
|
2001-07-24 22:08:49 +00:00
|
|
|
|
///
|
2003-12-02 07:15:42 +00:00
|
|
|
|
void close();
|
2003-11-10 09:06:48 +00:00
|
|
|
|
///
|
2003-02-08 19:18:01 +00:00
|
|
|
|
void markErased();
|
2002-08-02 16:39:43 +00:00
|
|
|
|
///
|
2003-07-04 08:23:23 +00:00
|
|
|
|
void addPreview(lyx::graphics::PreviewLoader &) const;
|
2003-12-01 13:35:49 +00:00
|
|
|
|
///
|
|
|
|
|
void setBackgroundColor(LColor_color);
|
2003-12-02 07:15:42 +00:00
|
|
|
|
///
|
2003-12-12 14:02:14 +00:00
|
|
|
|
void setStatus(CollapseStatus st);
|
2002-08-02 16:39:43 +00:00
|
|
|
|
|
2000-03-08 13:52:57 +00:00
|
|
|
|
protected:
|
2003-10-17 18:01:15 +00:00
|
|
|
|
///
|
|
|
|
|
virtual
|
2003-10-29 10:47:21 +00:00
|
|
|
|
DispatchResult
|
2003-10-17 18:01:15 +00:00
|
|
|
|
priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-05-19 17:03:12 +00:00
|
|
|
|
void dimension_collapsed(Dimension &) const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-05-19 17:03:12 +00:00
|
|
|
|
int height_collapsed() const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-05-30 06:48:24 +00:00
|
|
|
|
void draw_collapsed(PainterInfo & pi, int x, int y) const;
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
|
|
|
|
int getMaxTextWidth(Painter & pain, UpdatableInset const *) const;
|
2003-09-16 15:39:33 +00:00
|
|
|
|
///
|
|
|
|
|
Box const & buttonDim() const;
|
2003-11-04 12:36:59 +00:00
|
|
|
|
///
|
|
|
|
|
void edit(BufferView *, bool);
|
|
|
|
|
///
|
|
|
|
|
void edit(BufferView *, int, int);
|
2002-03-21 17:09:55 +00:00
|
|
|
|
|
2003-09-16 15:39:33 +00:00
|
|
|
|
private:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-11-10 09:06:48 +00:00
|
|
|
|
DispatchResult lfunMouseRelease(FuncRequest const &);
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2003-09-16 15:39:33 +00:00
|
|
|
|
FuncRequest adjustCommand(FuncRequest const &);
|
|
|
|
|
|
2001-03-11 03:20:44 +00:00
|
|
|
|
public:
|
2001-04-02 14:02:58 +00:00
|
|
|
|
///
|
2001-08-07 15:07:36 +00:00
|
|
|
|
mutable InsetText inset;
|
2003-12-12 14:02:14 +00:00
|
|
|
|
private:
|
2003-09-16 15:39:33 +00:00
|
|
|
|
///
|
2003-12-02 07:15:42 +00:00
|
|
|
|
mutable CollapseStatus status_;
|
2003-12-12 14:02:14 +00:00
|
|
|
|
protected:
|
2003-09-16 15:39:33 +00:00
|
|
|
|
///
|
|
|
|
|
LyXFont labelfont_;
|
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
|
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
|
mutable std::string label;
|
2000-03-08 13:52:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|