mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 23:12:31 +00:00
d07928baf5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10788 a592a061-630c-0410-9148-cb99ea01b6c8
45 lines
816 B
C++
45 lines
816 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GWrap.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 GWRAPH
|
|
#define GWRAP_H
|
|
|
|
#include "GViewBase.h"
|
|
|
|
#include "GtkLengthEntry.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class ControlWrap;
|
|
|
|
/** This class provides a GTK+ implementation of the Wrap Dialog.
|
|
*/
|
|
class GWrap : public GViewCB<ControlWrap, GViewGladeB> {
|
|
public:
|
|
GWrap(Dialog & parent);
|
|
private:
|
|
virtual void apply();
|
|
virtual void doBuild();
|
|
virtual void update();
|
|
|
|
// apply() won't act when this is true
|
|
bool applylock_;
|
|
|
|
Gtk::ComboBox *placementcombo_;
|
|
GtkLengthEntry *widthlengthentry_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GWRAP_H
|