// -*- C++ -*- /* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright 2001 The LyX Team. * * ====================================================== * * \file ControlLog.h * \author John Levon, moz@compsoc.man.ac.uk * \author Angus Leeming */ #ifndef CONTROLLOG_H #define CONTROLLOG_H #include #ifdef __GNUG__ #pragma interface #endif #include "ControlDialogs.h" #include "buffer.h" // Buffer::LogType /** * A controller for a read-only text browser. */ class ControlLog : public ControlDialog { public: /// ControlLog(LyXView &, Dialogs &); /// std::pair const & logfile() { return logfile_; } private: /// virtual void apply() {} /// set the params before show or update virtual void setParams(); /// clean-up on hide. virtual void clearParams(); std::pair logfile_; }; #endif // CONTROLLOG_H