2001-02-14 19:43:56 +00:00
|
|
|
/**
|
|
|
|
* \file paragraphdlgimpl.h
|
|
|
|
* Copyright 2001 LyX Team
|
|
|
|
* see the file COPYING
|
|
|
|
*
|
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
|
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PARAGRAPHDLGIMPL_H
|
|
|
|
#define PARAGRAPHDLGIMPL_H
|
|
|
|
|
2001-06-05 17:05:51 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-02-14 19:43:56 +00:00
|
|
|
#include "paragraphdlg.h"
|
|
|
|
#include "vspace.h"
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "paragraph.h"
|
2001-02-14 19:43:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FormParagraph;
|
|
|
|
|
|
|
|
class ParagraphDlgImpl : public ParagraphDlg
|
|
|
|
{
|
2001-06-05 17:05:51 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
ParagraphDlgImpl(FormParagraph *form, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
|
|
|
|
~ParagraphDlgImpl();
|
|
|
|
|
|
|
|
void setReadOnly(bool);
|
|
|
|
void setLabelWidth(const char *);
|
|
|
|
void setAlign(int);
|
|
|
|
void setChecks(bool, bool, bool, bool, bool);
|
|
|
|
void setSpace(VSpace::vspace_kind, VSpace::vspace_kind, bool, bool);
|
|
|
|
void setAboveLength(float, float, float, LyXGlueLength::UNIT, LyXGlueLength::UNIT, LyXGlueLength::UNIT);
|
|
|
|
void setBelowLength(float, float, float, LyXGlueLength::UNIT, LyXGlueLength::UNIT, LyXGlueLength::UNIT);
|
2001-06-25 00:06:33 +00:00
|
|
|
void setExtra(float, LyXGlueLength::UNIT, const string, int, bool, bool, Paragraph::PEXTRA_TYPE);
|
2001-06-05 17:05:51 +00:00
|
|
|
LyXGlueLength getAboveLength() const;
|
|
|
|
LyXGlueLength getBelowLength() const;
|
|
|
|
LyXLength getExtraWidth() const;
|
|
|
|
string getExtraWidthPercent() const;
|
|
|
|
// FIXME: return a std::string !
|
|
|
|
const char * getLabelWidth() const;
|
|
|
|
LyXAlignment getAlign() const;
|
|
|
|
bool getAboveKeep() const;
|
|
|
|
bool getBelowKeep() const;
|
|
|
|
bool getLineAbove() const;
|
|
|
|
bool getLineBelow() const;
|
|
|
|
bool getPagebreakAbove() const;
|
|
|
|
bool getPagebreakBelow() const;
|
|
|
|
bool getNoIndent() const;
|
|
|
|
VSpace::vspace_kind getSpaceAboveKind() const;
|
|
|
|
VSpace::vspace_kind getSpaceBelowKind() const;
|
2001-06-25 00:06:33 +00:00
|
|
|
Paragraph::PEXTRA_TYPE getExtraType() const;
|
|
|
|
Paragraph::MINIPAGE_ALIGNMENT getExtraAlign() const;
|
2001-06-05 17:05:51 +00:00
|
|
|
bool getHfillBetween() const;
|
|
|
|
bool getStartNewMinipage() const;
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void closeEvent (QCloseEvent * e);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
FormParagraph * form_;
|
|
|
|
VSpace::vspace_kind getSpaceKind(int val) const;
|
|
|
|
LyXLength::UNIT getLyXLength(int val) const;
|
|
|
|
int getItem(LyXLength::UNIT unit) const;
|
|
|
|
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
|
|
|
|
void apply_adaptor();
|
|
|
|
void cancel_adaptor();
|
|
|
|
void enable_extraOptions(int);
|
|
|
|
void enable_minipageOptions(int);
|
|
|
|
void enable_spacingAbove(int);
|
|
|
|
void enable_spacingBelow(int);
|
|
|
|
void ok_adaptor();
|
|
|
|
void restore_adaptor();
|
2001-02-14 19:43:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PARAGRAPHDLGIMPL_H
|