mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
7e20629741
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9240 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
813 B
C++
44 lines
813 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GERT.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Spray
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GERT_H
|
|
#define GERT_H
|
|
|
|
#include "GViewBase.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class ControlERT;
|
|
|
|
/** This class provides a GTK+ implementation of the ERT Dialog.
|
|
*/
|
|
class GERT : public GViewCB<ControlERT, GViewGladeB> {
|
|
public:
|
|
GERT(Dialog & parent);
|
|
private:
|
|
virtual void apply();
|
|
virtual void doBuild();
|
|
virtual void update();
|
|
|
|
// apply() won't act when this is true
|
|
bool applylock_;
|
|
|
|
Gtk::RadioButton * inlineradio_;
|
|
Gtk::RadioButton * openradio_;
|
|
Gtk::RadioButton * collapsedradio_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GERT_H
|