mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 06:03:36 +00:00
bbda43a400
This new attempt replace the previous attempt with InsetDialog which was still too tight with the older framework. Status: float, ert, box, info: migrated vspace: migrated but buggy. To be fixed later. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33480 a592a061-630c-0410-9148-cb99ea01b6c8
63 lines
1.3 KiB
C++
63 lines
1.3 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 "qt_i18n.h"
|
|
|
|
namespace lyx {
|
|
|
|
class Inset;
|
|
|
|
namespace frontend {
|
|
|
|
class InsetParamsWidget;
|
|
|
|
class InsetParamsDialog : public DialogView, public Ui::InsetParamsUi
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
InsetParamsDialog(GuiView & lv, InsetParamsWidget * widget);
|
|
~InsetParamsDialog();
|
|
|
|
///
|
|
void setInsetParamsWidget(InsetParamsWidget * widget);
|
|
|
|
protected Q_SLOTS:
|
|
void applyView();
|
|
void on_restorePB_clicked();
|
|
void on_okPB_clicked();
|
|
void on_applyPB_clicked();
|
|
void on_closePB_clicked();
|
|
void on_synchronizedViewCB_stateChanged(int state);
|
|
|
|
private:
|
|
/// \name DialogView inherited methods
|
|
//@{
|
|
void updateView();
|
|
void dispatchParams() {}
|
|
bool isBufferDependent() const { return true; }
|
|
bool canApply() const { return true; }
|
|
//@}
|
|
/// pimpl
|
|
struct Private;
|
|
Private * d;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // INSET_PARAMS_DIALOG_H
|