2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
|
* \file GuiTabular.h
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Kalle Dalheimer
|
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
* \author Herbert Vo<EFBFBD>
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
|
#ifndef GUITABULAR_H
|
|
|
|
|
#define GUITABULAR_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
|
#include "GuiDialog.h"
|
2007-08-11 15:48:15 +00:00
|
|
|
|
#include "ui_TabularUi.h"
|
2007-10-06 09:19:53 +00:00
|
|
|
|
#include "insets/InsetTabular.h"
|
2007-04-24 17:46:08 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2007-10-09 19:34:27 +00:00
|
|
|
|
class GuiTabular : public GuiDialog, public Ui::TabularUi
|
2007-08-31 22:16:11 +00:00
|
|
|
|
{
|
2007-04-24 17:46:08 +00:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
public:
|
2007-11-23 09:44:02 +00:00
|
|
|
|
GuiTabular(GuiView & lv);
|
2007-10-06 09:19:53 +00:00
|
|
|
|
~GuiTabular();
|
2007-09-05 20:33:29 +00:00
|
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
void change_adaptor();
|
|
|
|
|
|
|
|
|
|
void topspace_changed();
|
|
|
|
|
void bottomspace_changed();
|
|
|
|
|
void interlinespace_changed();
|
|
|
|
|
void booktabsChanged(bool);
|
|
|
|
|
void close_clicked();
|
|
|
|
|
void borderSet_clicked();
|
|
|
|
|
void borderUnset_clicked();
|
|
|
|
|
void leftBorder_changed();
|
|
|
|
|
void rightBorder_changed();
|
|
|
|
|
void topBorder_changed();
|
|
|
|
|
void bottomBorder_changed();
|
|
|
|
|
void multicolumn_clicked();
|
|
|
|
|
void rotateTabular();
|
|
|
|
|
void rotateCell();
|
|
|
|
|
void hAlign_changed(int align);
|
|
|
|
|
void vAlign_changed(int align);
|
|
|
|
|
void specialAlignment_changed();
|
|
|
|
|
void width_changed();
|
|
|
|
|
void longTabular();
|
|
|
|
|
void ltNewpage_clicked();
|
|
|
|
|
void ltHeaderStatus_clicked();
|
|
|
|
|
void ltHeaderBorderAbove_clicked();
|
|
|
|
|
void ltHeaderBorderBelow_clicked();
|
|
|
|
|
void ltFirstHeaderStatus_clicked();
|
|
|
|
|
void ltFirstHeaderBorderAbove_clicked();
|
|
|
|
|
void ltFirstHeaderBorderBelow_clicked();
|
|
|
|
|
void ltFirstHeaderEmpty_clicked();
|
|
|
|
|
void ltFooterStatus_clicked();
|
|
|
|
|
void ltFooterBorderAbove_clicked();
|
|
|
|
|
void ltFooterBorderBelow_clicked();
|
|
|
|
|
void ltLastFooterStatus_clicked();
|
|
|
|
|
void ltLastFooterBorderAbove_clicked();
|
|
|
|
|
void ltLastFooterBorderBelow_clicked();
|
|
|
|
|
void ltLastFooterEmpty_clicked();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
private:
|
2007-09-05 20:33:29 +00:00
|
|
|
|
///
|
|
|
|
|
void closeEvent(QCloseEvent * e);
|
|
|
|
|
///
|
|
|
|
|
bool isValid() { return true; }
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/// update borders
|
2007-09-05 20:33:29 +00:00
|
|
|
|
void update_borders();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/// update
|
2007-09-11 18:33:42 +00:00
|
|
|
|
void updateContents();
|
2006-03-05 17:24:44 +00:00
|
|
|
|
/// save some values before closing the gui
|
2007-09-05 20:33:29 +00:00
|
|
|
|
void closeGUI();
|
2007-10-06 09:19:53 +00:00
|
|
|
|
///
|
|
|
|
|
bool initialiseParams(std::string const & data);
|
|
|
|
|
/// clean-up on hide.
|
|
|
|
|
void clearParams();
|
|
|
|
|
/// We use set() instead.
|
|
|
|
|
void dispatchParams() {};
|
|
|
|
|
///
|
|
|
|
|
bool isBufferDependent() const { return true; }
|
|
|
|
|
///
|
|
|
|
|
kb_action getLfun() const { return LFUN_TABULAR_FEATURE; }
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
Tabular::idx_type getActiveCell() const;
|
|
|
|
|
/// return true if units should default to metric
|
|
|
|
|
bool useMetricUnits() const;
|
|
|
|
|
/// set a parameter
|
|
|
|
|
void set(Tabular::Feature, std::string const & arg = std::string());
|
|
|
|
|
|
|
|
|
|
/// borders
|
|
|
|
|
void toggleTopLine();
|
|
|
|
|
void toggleBottomLine();
|
|
|
|
|
void toggleLeftLine();
|
|
|
|
|
void toggleRightLine();
|
|
|
|
|
|
|
|
|
|
void setSpecial(std::string const & special);
|
|
|
|
|
|
|
|
|
|
void setWidth(std::string const & width);
|
|
|
|
|
|
|
|
|
|
void toggleMultiColumn();
|
|
|
|
|
|
|
|
|
|
void rotateTabular(bool yes);
|
|
|
|
|
void rotateCell(bool yes);
|
|
|
|
|
|
|
|
|
|
enum HALIGN { LEFT, RIGHT, CENTER, BLOCK };
|
|
|
|
|
|
|
|
|
|
void halign(HALIGN h);
|
|
|
|
|
|
|
|
|
|
enum VALIGN { TOP, MIDDLE, BOTTOM };
|
|
|
|
|
|
|
|
|
|
void valign(VALIGN h);
|
|
|
|
|
|
|
|
|
|
void booktabs(bool yes);
|
|
|
|
|
|
|
|
|
|
void longTabular(bool yes);
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
Tabular::idx_type active_cell_;
|
|
|
|
|
///
|
|
|
|
|
Tabular tabular_;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
|
#endif // GUITABULAR_H
|