mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
9705be9f1b
Cleaned up code in controllers in the process; I think that the interface is stabilising now. Cleaned up code in InsetInclude a little. Mental note (to me?!): the Bibitem, Bibtex and Include insets create an inset when the appropriate menu item is selected. This is incorrect; the inset should only be created when "Ok" is pressed, as with the majority of insets. CREATE_XXX flags and associated code are needed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1817 a592a061-630c-0410-9148-cb99ea01b6c8
49 lines
942 B
C++
49 lines
942 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file ControlVCLog.h
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
*/
|
|
|
|
#ifndef CONTROLVCLOG_H
|
|
#define CONTROLVCLOG_H
|
|
|
|
#include <utility>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "ControlDialogs.h"
|
|
|
|
/**
|
|
* A controller for the Version Control log viewer.
|
|
*/
|
|
class ControlVCLog : public ControlDialog<ControlConnectBD> {
|
|
public:
|
|
///
|
|
ControlVCLog(LyXView &, Dialogs &);
|
|
///
|
|
string 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();
|
|
|
|
string logfile_;
|
|
};
|
|
|
|
#endif // CONTROLVCLOG_H
|