lyx_mirror/src/frontends/qt4/GuiTabular.h
Abdelrazak Younes ecc492a3ce Fix #7021: the problem was that activating the border combo was triggering dialogToParams() and thus disallowed because of the empty value.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36712 a592a061-630c-0410-9148-cb99ea01b6c8
2010-12-04 10:55:03 +00:00

69 lines
1.5 KiB
C++

// -*- C++ -*-
/**
* \file GuiTabular.h
* 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ürgen Spitzmüller
* \author Herbert Voß
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUITABULAR_H
#define GUITABULAR_H
#include "InsetParamsWidget.h"
#include "ui_TabularUi.h"
#include "insets/InsetTabular.h"
namespace lyx {
namespace frontend {
class GuiTabular : public InsetParamsWidget, public Ui::TabularUi
{
Q_OBJECT
public:
GuiTabular(QWidget * parent = 0);
private Q_SLOTS:
void checkEnabled();
void borderSet_clicked();
void borderUnset_clicked();
void on_topspaceCO_activated(int index);
void on_bottomspaceCO_activated(int index);
void on_interlinespaceCO_activated(int index);
private:
/// \name InsetParamsWidget inherited methods
//@{
InsetCode insetCode() const { return TABULAR_CODE; }
FuncCode creationCode() const { return LFUN_TABULAR_INSERT; }
void paramsToDialog(Inset const *);
docstring dialogToParams() const;
//@}
///
void setHAlign(std::string & param_str) const;
///
void setVAlign(std::string & param_str) const;
///
void setTableAlignment(std::string & param_str) const;
///
void setWidthAndAlignment();
///
bool funcEnabled(Tabular::Feature f) const;
///
bool firstheader_suppressable_;
///
bool lastfooter_suppressable_;
};
} // namespace frontend
} // namespace lyx
#endif // GUITABULAR_H