lyx_mirror/src/frontends/qt4/GuiParagraph.h
Pavel Sanda 65f641ac1d Better fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30143 a592a061-630c-0410-9148-cb99ea01b6c8
2009-06-16 14:33:29 +00:00

105 lines
2.0 KiB
C++

// -*- C++ -*-
/**
* \file GuiParagraph.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Edwin Leuven
* \author John Levon
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUIPARAGRAPH_H
#define GUIPARAGRAPH_H
#include "DialogView.h"
#include "GuiView.h"
#include "qt_helpers.h"
#include "ui_ParagraphUi.h"
#include "Layout.h"
#include "ParagraphParameters.h"
#include <QDialog>
#include <QShowEvent>
#include <QGridLayout>
#include <map>
namespace lyx {
namespace frontend {
class GuiParagraph
: public DialogView, public Ui::ParagraphUi
{
Q_OBJECT
public:
GuiParagraph(GuiView & lv);
/// Dialog inherited methods
//@{
void applyView();
void updateView();
void dispatchParams();
void enableView(bool enable);
bool isBufferDependent() const { return true; }
virtual FuncCode getLfun() const { return LFUN_PARAGRAPH_PARAMS_APPLY; }
void saveSession() const;
void restoreSession();
//@}
private:
///
void checkAlignmentRadioButtons();
///
void alignmentToRadioButtons(LyXAlignment align = LYX_ALIGN_LAYOUT);
///
LyXAlignment getAlignmentFromDialog() const;
///
ParagraphParameters const & params() const;
///
bool haveMultiParSelection() const;
///
bool canIndent() const;
///
bool hasLabelwidth() const;
///
LyXAlignment alignPossible() const;
///
LyXAlignment alignDefault() const;
private Q_SLOTS:
///
void changed();
///
void on_synchronizedViewCB_toggled();
///
void on_restorePB_clicked();
///
void on_linespacing_activated(int);
/// Apply changes
void on_applyPB_clicked();
/// Apply changes and close
void on_okPB_clicked();
/// Close/Cancel dialog
void on_closePB_clicked();
private:
///
typedef std::map<LyXAlignment, QRadioButton *> RadioMap;
///
RadioMap radioMap_;
///
QString alignDefaultLabel_;
///
ParagraphParameters params_;
};
} // namespace frontend
} // namespace lyx
#endif // QPARAGRAPH_H