2003-09-02 10:29:05 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file GAboutlyx.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Huang Ying
|
|
|
|
*
|
2003-09-02 17:02:32 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-09-02 10:29:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GABOUTLYX_H
|
|
|
|
#define GABOUTLYX_H
|
|
|
|
|
|
|
|
#include "GViewBase.h"
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2003-09-02 10:29:05 +00:00
|
|
|
class ControlAboutlyx;
|
|
|
|
|
2004-09-26 13:18:29 +00:00
|
|
|
class GAboutlyx : public GViewCB<ControlAboutlyx, GViewGladeB> {
|
2003-09-02 10:29:05 +00:00
|
|
|
public:
|
|
|
|
GAboutlyx(Dialog &);
|
|
|
|
private:
|
|
|
|
virtual void apply() {}
|
|
|
|
virtual void update() {}
|
|
|
|
virtual void doBuild();
|
|
|
|
};
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-09-02 10:29:05 +00:00
|
|
|
#endif
|