mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-17 13:26:58 +00:00
78 lines
1.7 KiB
C++
78 lines
1.7 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetParamsDialog.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_PARAMS_DIALOG_H
|
|
#define INSET_PARAMS_DIALOG_H
|
|
|
|
#include "DialogView.h"
|
|
#include "ui_InsetParamsUi.h"
|
|
|
|
#include <QPushButton>
|
|
|
|
namespace lyx {
|
|
|
|
class Inset;
|
|
|
|
namespace frontend {
|
|
|
|
class InsetParamsWidget;
|
|
|
|
/// An InsetParamsDialog wraps an InsetParamsWidget, which is what
|
|
/// will contain all the specific dialog parts for a given inset.
|
|
/// This class manages the OK, etc, buttons and immediate apply
|
|
/// checkbox, etc.
|
|
class InsetParamsDialog : public DialogView, public Ui::InsetParamsUi
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
InsetParamsDialog(GuiView & lv, InsetParamsWidget * widget);
|
|
~InsetParamsDialog();
|
|
|
|
///
|
|
void setInsetParamsWidget(InsetParamsWidget * widget);
|
|
|
|
protected Q_SLOTS:
|
|
void onWidget_changed();
|
|
void applyView() override;
|
|
void resetDialog();
|
|
void on_buttonBox_clicked(QAbstractButton *);
|
|
void on_immediateApplyCB_stateChanged(int state);
|
|
void on_synchronizedCB_stateChanged(int state);
|
|
|
|
private:
|
|
/// \name DialogView inherited methods
|
|
//@{
|
|
void updateView() override;
|
|
void dispatchParams() override {}
|
|
bool isBufferDependent() const override { return true; }
|
|
bool canApply() const override { return true; }
|
|
bool initialiseParams(std::string const &) override;
|
|
//@}
|
|
///
|
|
void newInset();
|
|
///
|
|
bool newInsetAllowed() const;
|
|
///
|
|
void updateView(bool update_widget);
|
|
///
|
|
docstring checkWidgets(bool immediate);
|
|
///
|
|
QPushButton * newPB;
|
|
/// pimpl
|
|
struct Private;
|
|
Private * d;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_PARAMS_DIALOG_H
|