lyx_mirror/src/frontends/gtk/GLog.h
John Spray 2c7c49ad8b Add GTK Log view dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9071 a592a061-630c-0410-9148-cb99ea01b6c8
2004-10-09 13:51:05 +00:00

44 lines
829 B
C++

// -*- C++ -*-
/**
* \file GLog.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 GLOG_H
#define GLOG_H
#include "GViewBase.h"
namespace lyx {
namespace frontend {
class ControlLog;
/**
* This class provides a GTK+ implementation of a dialog to browse through a
* log file.
*/
class GLog : public GViewCB<ControlLog, GViewGladeB> {
public:
GLog(Dialog &);
// Create the dialog
virtual void doBuild();
// Set the Params variable for the Controller.
virtual void apply() {}
// Update dialog (load log into textbuffer)
virtual void update();
Glib::RefPtr<Gtk::TextBuffer> contentbuffer_;
};
} // namespace frontend
} // namespace lyx
#endif // GLOG_H