2000-04-19 14:42:19 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-04-19 14:42:19 +00:00
|
|
|
*
|
|
|
|
*======================================================
|
|
|
|
*/
|
|
|
|
// This is the rewrite of the tabular (table) support.
|
|
|
|
|
|
|
|
// It will probably be a lot of work.
|
|
|
|
|
|
|
|
// One first goal could be to make the inset read the old table format
|
|
|
|
// and just output it again... no viewing at all.
|
|
|
|
|
|
|
|
// When making the internal structure of tabular support I really think
|
|
|
|
// that STL containers should be used. This will separate the container from
|
|
|
|
// the rest of the code, which is a good thing.
|
|
|
|
|
|
|
|
// Ideally the tabular support should do as the mathed and use
|
|
|
|
// LaTeX in the .lyx file too.
|
|
|
|
|
|
|
|
// Things to think of when desingning the new tabular support:
|
|
|
|
// - color support (colortbl, color)
|
|
|
|
// - decimal alignment (dcloumn)
|
|
|
|
// - custom lines (hhline)
|
|
|
|
// - rotation
|
|
|
|
// - multicolumn
|
|
|
|
// - multirow
|
|
|
|
// - column styles
|
|
|
|
|
|
|
|
// This is what I have written about tabular support in the LyX3-Tasks file:
|
|
|
|
//
|
|
|
|
// o rewrite of table code. Should probably be written as some
|
|
|
|
// kind of an inset. At least get the code out of the kernel.
|
|
|
|
// - colortbl -multirow
|
|
|
|
// - hhline -multicolumn
|
|
|
|
// - dcolumn
|
|
|
|
// o enhance longtable support
|
|
|
|
|
|
|
|
// Lgb
|
|
|
|
|
|
|
|
#ifndef INSETTABULAR_H
|
|
|
|
#define INSETTABULAR_H
|
|
|
|
|
2001-04-04 22:08:13 +00:00
|
|
|
#include <sigc++/signal_system.h>
|
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "inset.h"
|
2000-04-21 15:16:22 +00:00
|
|
|
#include "tabular.h"
|
2000-04-19 14:42:19 +00:00
|
|
|
#include "LString.h"
|
2000-04-21 15:16:22 +00:00
|
|
|
#include "lyxcursor.h"
|
2001-06-27 14:10:35 +00:00
|
|
|
#include "func_status.h"
|
2000-10-24 13:13:59 +00:00
|
|
|
|
2000-04-19 14:42:19 +00:00
|
|
|
class LyXLex;
|
|
|
|
class Painter;
|
|
|
|
class BufferView;
|
|
|
|
class Buffer;
|
|
|
|
|
|
|
|
class InsetTabular : public UpdatableInset {
|
|
|
|
public:
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
enum UpdateCodes {
|
|
|
|
NONE = 0,
|
|
|
|
CURSOR = 1,
|
|
|
|
CELL = 2,
|
|
|
|
SELECTION = 3,
|
|
|
|
FULL = 4,
|
|
|
|
INIT = 5
|
|
|
|
};
|
|
|
|
///
|
|
|
|
InsetTabular(Buffer const &, int rows = 1, int columns = 1);
|
|
|
|
///
|
|
|
|
InsetTabular(InsetTabular const &, Buffer const &);
|
|
|
|
///
|
|
|
|
~InsetTabular();
|
|
|
|
///
|
|
|
|
Inset * Clone(Buffer const &) const;
|
|
|
|
///
|
|
|
|
void Read(Buffer const *, LyXLex &);
|
|
|
|
///
|
|
|
|
void Write(Buffer const *, std::ostream &) const;
|
|
|
|
///
|
|
|
|
int ascent(BufferView *, LyXFont const &) const;
|
|
|
|
///
|
|
|
|
int descent(BufferView *, LyXFont const &) const;
|
|
|
|
///
|
|
|
|
int width(BufferView *, LyXFont const & f) const;
|
|
|
|
///
|
|
|
|
void draw(BufferView *, const LyXFont &, int , float &, bool) const;
|
|
|
|
///
|
|
|
|
void update(BufferView *, LyXFont const &, bool = false);
|
|
|
|
///
|
|
|
|
string const EditMessage() const;
|
|
|
|
///
|
|
|
|
void Edit(BufferView *, int x, int y, unsigned int);
|
|
|
|
///
|
2001-04-27 14:03:25 +00:00
|
|
|
bool doClearArea() const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
void InsetUnlock(BufferView *);
|
|
|
|
///
|
|
|
|
void UpdateLocal(BufferView *, UpdateCodes, bool mark_dirty) const;
|
|
|
|
///
|
|
|
|
bool LockInsetInInset(BufferView *, UpdatableInset *);
|
|
|
|
///
|
2001-04-04 22:08:13 +00:00
|
|
|
bool UnlockInsetInInset(BufferView *, UpdatableInset *,
|
|
|
|
bool lr = false);
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
bool UpdateInsetInInset(BufferView *, Inset *);
|
|
|
|
///
|
|
|
|
unsigned int InsetInInsetY();
|
|
|
|
///
|
|
|
|
UpdatableInset * GetLockingInset();
|
|
|
|
///
|
|
|
|
UpdatableInset * GetFirstLockingInsetOfType(Inset::Code);
|
|
|
|
///
|
|
|
|
bool InsertInset(BufferView *, Inset *);
|
|
|
|
///
|
|
|
|
bool IsTextInset() const { return true; }
|
|
|
|
///
|
|
|
|
bool display() const { return tabular->IsLongTabular(); }
|
|
|
|
///
|
|
|
|
void InsetButtonRelease(BufferView *, int, int, int);
|
|
|
|
///
|
|
|
|
void InsetButtonPress(BufferView *, int, int, int);
|
|
|
|
///
|
|
|
|
void InsetMotionNotify(BufferView *, int, int, int);
|
|
|
|
///
|
|
|
|
void InsetKeyPress(XKeyEvent *);
|
|
|
|
///
|
|
|
|
UpdatableInset::RESULT LocalDispatch(BufferView *, kb_action,
|
2001-04-04 22:08:13 +00:00
|
|
|
string const &);
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
int Latex(Buffer const *, std::ostream &, bool, bool) const;
|
|
|
|
///
|
|
|
|
int Ascii(Buffer const *, std::ostream &, int linelen) const;
|
|
|
|
///
|
|
|
|
int Linuxdoc(Buffer const *, std::ostream &) const;
|
|
|
|
///
|
|
|
|
int DocBook(Buffer const *, std::ostream &) const;
|
|
|
|
///
|
|
|
|
void Validate(LaTeXFeatures & features) const;
|
|
|
|
///
|
|
|
|
Inset::Code LyxCode() const { return Inset::TABULAR_CODE; }
|
|
|
|
///
|
|
|
|
void GetCursorPos(BufferView *, int & x, int & y) const;
|
|
|
|
///
|
|
|
|
void ToggleInsetCursor(BufferView *);
|
|
|
|
///
|
|
|
|
bool TabularFeatures(BufferView * bv, string const & what);
|
|
|
|
///
|
|
|
|
void TabularFeatures(BufferView * bv, LyXTabular::Feature feature,
|
2001-04-04 22:08:13 +00:00
|
|
|
string const & val = string());
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
int GetActCell() const { return actcell; }
|
|
|
|
///
|
2001-05-28 15:11:24 +00:00
|
|
|
void SetFont(BufferView *, LyXFont const &, bool toggleall = false,
|
|
|
|
bool selectall = false);
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
int getMaxWidth(BufferView *, UpdatableInset const *) const;
|
|
|
|
///
|
|
|
|
Buffer * BufferOwner() const { return const_cast<Buffer *>(buffer); }
|
|
|
|
///
|
2001-04-04 22:08:13 +00:00
|
|
|
LyXText * getLyXText(BufferView const *,
|
|
|
|
bool const recursive = false) const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
2001-06-07 14:51:20 +00:00
|
|
|
void deleteLyXText(BufferView *, bool recursive = true) const;
|
|
|
|
///
|
|
|
|
void resizeLyXText(BufferView *, bool force = false) const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
void OpenLayoutDialog(BufferView *) const;
|
|
|
|
///
|
|
|
|
bool ShowInsetDialog(BufferView *) const;
|
|
|
|
///
|
2001-06-27 14:10:35 +00:00
|
|
|
func_status::value_type getStatus(string const & argument) const;
|
2001-04-06 12:47:50 +00:00
|
|
|
///
|
|
|
|
std::vector<string> const getLabelList() const;
|
2001-04-27 14:03:25 +00:00
|
|
|
///
|
|
|
|
void nodraw(bool b) {
|
|
|
|
UpdatableInset::nodraw(b);
|
|
|
|
}
|
|
|
|
bool nodraw() const;
|
|
|
|
///
|
|
|
|
int scroll(bool recursive=true) const;
|
|
|
|
void scroll(BufferView *bv, float sx) const {
|
|
|
|
UpdatableInset::scroll(bv, sx);
|
|
|
|
}
|
|
|
|
void scroll(BufferView *bv, int offset) const {
|
|
|
|
UpdatableInset::scroll(bv, offset);
|
|
|
|
}
|
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
//
|
|
|
|
// Public structures and variables
|
|
|
|
///
|
2001-04-04 22:08:13 +00:00
|
|
|
//LyXTabular * tabular;
|
|
|
|
boost::scoped_ptr<LyXTabular> tabular;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
SigC::Signal0<void> hideDialog;
|
2000-04-19 14:42:19 +00:00
|
|
|
|
|
|
|
private:
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
bool calculate_dimensions_of_cells(BufferView *, LyXFont const &,
|
2001-04-06 12:47:50 +00:00
|
|
|
bool = false) const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
void DrawCellLines(Painter &, int x, int baseline,
|
2001-04-06 12:47:50 +00:00
|
|
|
int row, int cell) const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
void DrawCellSelection(Painter &, int x, int baseline,
|
2001-04-06 12:47:50 +00:00
|
|
|
int row, int column, int cell) const;
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
void ShowInsetCursor(BufferView *, bool show=true);
|
|
|
|
///
|
|
|
|
void HideInsetCursor(BufferView *);
|
|
|
|
///
|
|
|
|
void setPos(BufferView *, int x, int y) const;
|
|
|
|
///
|
|
|
|
UpdatableInset::RESULT moveRight(BufferView *, bool lock = true);
|
|
|
|
///
|
|
|
|
UpdatableInset::RESULT moveLeft(BufferView *, bool lock = true);
|
|
|
|
///
|
|
|
|
UpdatableInset::RESULT moveUp(BufferView *, bool lock = true);
|
|
|
|
///
|
|
|
|
UpdatableInset::RESULT moveDown(BufferView *, bool lock = true);
|
|
|
|
///
|
|
|
|
bool moveNextCell(BufferView *, bool lock = false);
|
|
|
|
///
|
|
|
|
bool movePrevCell(BufferView *, bool lock = false);
|
|
|
|
///
|
|
|
|
bool Delete();
|
|
|
|
///
|
|
|
|
int getCellXPos(int cell) const;
|
|
|
|
///
|
|
|
|
void resetPos(BufferView *) const;
|
|
|
|
///
|
|
|
|
void RemoveTabularRow();
|
|
|
|
///
|
|
|
|
bool hasSelection() const {
|
2001-04-06 12:47:50 +00:00
|
|
|
return sel_cell_start != sel_cell_end;
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
///
|
|
|
|
void clearSelection() const {
|
2001-01-25 16:00:38 +00:00
|
|
|
sel_cell_start = sel_cell_end = 0;
|
2001-04-04 09:42:56 +00:00
|
|
|
}
|
|
|
|
///
|
2001-04-06 12:47:50 +00:00
|
|
|
bool ActivateCellInset(BufferView *, int x = 0, int y = 0,
|
|
|
|
int button = 0,
|
|
|
|
bool behind = false);
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
2001-04-06 12:47:50 +00:00
|
|
|
bool ActivateCellInsetAbs(BufferView *, int x = 0, int y = 0,
|
|
|
|
int button = 0);
|
2001-04-04 09:42:56 +00:00
|
|
|
///
|
|
|
|
bool InsetHit(BufferView * bv, int x, int y) const;
|
|
|
|
///
|
|
|
|
int GetMaxWidthOfCell(BufferView * bv, int cell) const;
|
|
|
|
///
|
|
|
|
bool hasPasteBuffer() const;
|
|
|
|
///
|
|
|
|
bool copySelection(BufferView *);
|
|
|
|
///
|
|
|
|
bool pasteSelection(BufferView *);
|
|
|
|
///
|
|
|
|
bool cutSelection();
|
|
|
|
///
|
|
|
|
bool isRightToLeft(BufferView *);
|
2001-05-28 15:11:24 +00:00
|
|
|
///
|
|
|
|
void getSelection(int & scol, int & ecol, int & srow, int & erow) const;
|
2000-05-04 08:14:34 +00:00
|
|
|
|
2001-04-04 09:42:56 +00:00
|
|
|
//
|
|
|
|
// Private structures and variables
|
|
|
|
///
|
|
|
|
InsetText * the_locking_inset;
|
|
|
|
///
|
|
|
|
InsetText * old_locking_inset;
|
|
|
|
///
|
|
|
|
Buffer const * buffer;
|
|
|
|
///
|
|
|
|
mutable LyXCursor cursor;
|
|
|
|
///
|
|
|
|
mutable unsigned int inset_x;
|
|
|
|
///
|
|
|
|
mutable unsigned int inset_y;
|
|
|
|
///
|
|
|
|
mutable int sel_cell_start;
|
|
|
|
///
|
|
|
|
mutable int sel_cell_end;
|
|
|
|
///
|
|
|
|
mutable int actcell;
|
|
|
|
///
|
|
|
|
mutable int oldcell;
|
|
|
|
///
|
|
|
|
mutable int actcol;
|
|
|
|
///
|
|
|
|
mutable int actrow;
|
|
|
|
///
|
|
|
|
mutable int first_visible_cell;
|
|
|
|
///
|
|
|
|
bool no_selection;
|
|
|
|
///
|
|
|
|
mutable bool locked;
|
|
|
|
///
|
|
|
|
mutable UpdateCodes need_update;
|
2000-04-19 14:42:19 +00:00
|
|
|
};
|
|
|
|
#endif
|