2001-03-15 13:37:04 +00:00
|
|
|
// -*- C++ -*-
|
2001-02-12 14:09:09 +00:00
|
|
|
/**
|
|
|
|
* \file FormBibtex.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
2001-02-12 14:09:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMBIBTEX_H
|
|
|
|
#define FORMBIBTEX_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-03-19 16:37:01 +00:00
|
|
|
#include "FormBase.h"
|
|
|
|
|
|
|
|
class ControlBibtex;
|
2002-06-13 13:43:51 +00:00
|
|
|
struct FD_bibtex;
|
2001-02-12 14:09:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For bibtex database setting
|
|
|
|
*/
|
2002-06-13 13:43:51 +00:00
|
|
|
class FormBibtex : public FormCB<ControlBibtex, FormDB<FD_bibtex> > {
|
2001-02-12 14:09:09 +00:00
|
|
|
public:
|
|
|
|
///
|
2002-08-12 14:28:43 +00:00
|
|
|
FormBibtex();
|
2001-03-23 17:09:34 +00:00
|
|
|
private:
|
2001-03-19 16:37:01 +00:00
|
|
|
/// Set the Params variable for the Controller.
|
|
|
|
virtual void apply();
|
|
|
|
/// Build the dialog.
|
2001-02-12 14:09:09 +00:00
|
|
|
virtual void build();
|
2001-03-19 16:37:01 +00:00
|
|
|
/// Update dialog before/whilst showing it.
|
2001-02-12 14:09:09 +00:00
|
|
|
virtual void update();
|
2001-03-19 16:37:01 +00:00
|
|
|
/// Filter the inputs on callback from xforms
|
|
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
2001-02-12 14:09:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORMBIBTEX_H
|