mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
0c2a3e5960
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2118 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
820 B
C++
40 lines
820 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \file ControlBibitem.h
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
|
* \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.
|
|
*/
|
|
class ControlBibitem : public ControlCommand {
|
|
public:
|
|
///
|
|
ControlBibitem(LyXView &, Dialogs &);
|
|
|
|
private:
|
|
/// Dispatch the changed parameters to the kernel.
|
|
virtual void applyParamsToInset();
|
|
/// not needed.
|
|
virtual void applyParamsNoInset() {}
|
|
};
|
|
|
|
#endif // CONTROLBIBITEM_H
|