mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
42015a8ebd
- LFUN_INSET_APPLY handling goes to GuiView. - Dialog needs a GuiView instead of a LyXView. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21734 a592a061-630c-0410-9148-cb99ea01b6c8
67 lines
1.0 KiB
C++
67 lines
1.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiIndex.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
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUIINDEX_H
|
|
#define GUIINDEX_H
|
|
|
|
#include "GuiDialog.h"
|
|
#include "ui_IndexUi.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiIndexDialogBase : public GuiCommand, public Ui::IndexUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiIndexDialogBase(GuiView & lv, docstring const & title,
|
|
QString const & label, std::string const & name);
|
|
|
|
private Q_SLOTS:
|
|
void change_adaptor();
|
|
void reject();
|
|
|
|
private:
|
|
///
|
|
void closeEvent(QCloseEvent * e);
|
|
///
|
|
bool isValid();
|
|
/// Apply changes
|
|
void applyView();
|
|
/// update
|
|
void updateContents();
|
|
|
|
///
|
|
QString label_;
|
|
};
|
|
|
|
|
|
class GuiIndex : public GuiIndexDialogBase
|
|
{
|
|
public:
|
|
GuiIndex(GuiView & lv);
|
|
};
|
|
|
|
|
|
class GuiLabel : public GuiIndexDialogBase
|
|
{
|
|
public:
|
|
GuiLabel(GuiView & lv);
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUIINDEX_H
|