lyx_mirror/src/insets/insetcollapsable.h

103 lines
2.2 KiB
C
Raw Normal View History

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
*======================================================
*/
#ifndef INSETCOLLAPSABLE_H
#define INSETCOLLAPSABLE_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insettext.h"
#include "lyxfont.h"
#include "LColor.h"
class Painter;
/** A colapsable text inset
*/
class InsetCollapsable : public InsetText {
public:
///
static int const TEXT_TO_TOP_OFFSET = 2;
///
static int const TEXT_TO_BOTTOM_OFFSET = 2;
///
explicit
InsetCollapsable(Buffer *);
///
~InsetCollapsable() {}
///
Inset * Clone() const;
///
int ascent(Painter &, LyXFont const &) const;
///
int descent(Painter &, LyXFont const &) const;
///
int width(Painter &, LyXFont const & f) const;
///
void draw(Painter & pain, const LyXFont &, int , float &) const;
///
void Edit(BufferView *, int, int, unsigned int);
///
EDITABLE Editable() const;
///
void InsetUnlock(BufferView *);
///
bool display() const { return (!collapsed); }
///
void InsetButtonRelease(BufferView *, int, int, int);
///
void InsetButtonPress(BufferView *, int, int, int);
///
void InsetMotionNotify(BufferView *, int, int, int);
///
void setLabel(string const & l) { label = l; }
///
void setLabelFont(LyXFont & f) { labelfont = f; }
///
void setAutoCollapse(bool f) { autocolapse = f; }
protected:
///
int ascent_collapsed(Painter &, LyXFont const &) const;
///
int descent_collapsed(Painter &, LyXFont const &) const;
///
int width_collapsed(Painter &, LyXFont const & f) const;
///
void draw_collapsed(Painter & pain, const LyXFont &, int , float &) const;
///
void UpdateLocal(BufferView *, bool);
///
bool collapsed;
///
LColor::color framecolor;
private:
///
string label;
///
LyXFont labelfont;
///
bool autocolapse;
///
mutable int
top_baseline, top_x,
button_x, button_top_y, button_bottom_y;
};
#endif