2001-06-13 14:33:31 +00:00
|
|
|
// -*- C++ -*-
|
2001-03-15 13:37:04 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2001-03-20 10:14:03 +00:00
|
|
|
* Copyright 2001 The LyX Team.
|
2001-03-15 13:37:04 +00:00
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* \file ControlBibitem.h
|
2001-03-20 10:14:03 +00:00
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
2001-03-15 13:37:04 +00:00
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONTROLBIBITEM_H
|
|
|
|
#define CONTROLBIBITEM_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ControlCommand.h"
|
|
|
|
|
|
|
|
/** A controller for Bibitem dialogs.
|
|
|
|
*/
|
2001-03-28 12:59:29 +00:00
|
|
|
class ControlBibitem : public ControlCommand {
|
2001-03-15 13:37:04 +00:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
ControlBibitem(LyXView &, Dialogs &);
|
|
|
|
|
2001-03-23 17:09:34 +00:00
|
|
|
private:
|
|
|
|
/// Dispatch the changed parameters to the kernel.
|
|
|
|
virtual void applyParamsToInset();
|
|
|
|
/// not needed.
|
|
|
|
virtual void applyParamsNoInset() {}
|
2001-03-15 13:37:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONTROLBIBITEM_H
|