2001-06-13 14:33:31 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-05 14:10:50 +00:00
|
|
|
/**
|
|
|
|
* \file ControlIndex.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-03-28 12:59:29 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author Angus Leeming
|
2001-03-28 12:59:29 +00:00
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
* Full author contact details are available in file CREDITS
|
2001-03-28 12:59:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONTROLINDEX_H
|
|
|
|
#define CONTROLINDEX_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ControlCommand.h"
|
|
|
|
|
|
|
|
/** A controller for Index dialogs.
|
|
|
|
*/
|
|
|
|
class ControlIndex : public ControlCommand {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
ControlIndex(LyXView &, Dialogs &);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONTROLINDEX_H
|