2000-07-07 07:46:37 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMCITATION_H
|
|
|
|
#define FORMCITATION_H
|
|
|
|
|
2000-07-31 12:51:19 +00:00
|
|
|
#ifdef __GNUG__
|
2000-07-27 10:26:38 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
2000-07-07 07:46:37 +00:00
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
#include "FormInset.h"
|
2000-07-14 07:52:03 +00:00
|
|
|
struct FD_form_citation;
|
2000-07-07 07:46:37 +00:00
|
|
|
|
|
|
|
/** This class provides an XForms implementation of the FormCitation Dialog.
|
|
|
|
*/
|
2000-08-01 18:11:14 +00:00
|
|
|
class FormCitation : public FormCommand {
|
2000-07-07 07:46:37 +00:00
|
|
|
public:
|
2000-08-04 13:12:30 +00:00
|
|
|
///
|
|
|
|
FormCitation(LyXView *, Dialogs *);
|
|
|
|
///
|
|
|
|
~FormCitation();
|
|
|
|
private:
|
2000-07-07 07:46:37 +00:00
|
|
|
///
|
|
|
|
enum State {
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
DOWN,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
UP,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
DELETE,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
ADD,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
BIBBRSR,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
CITEBRSR,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
ON,
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2000-07-07 07:46:37 +00:00
|
|
|
OFF
|
|
|
|
};
|
2000-10-13 05:57:05 +00:00
|
|
|
/// Disconnect signals. Also perform any necessary housekeeping.
|
|
|
|
virtual void disconnect();
|
|
|
|
|
2000-07-07 07:46:37 +00:00
|
|
|
/// Build the dialog
|
2000-08-01 17:33:32 +00:00
|
|
|
virtual void build();
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Filter the inputs
|
2000-10-05 07:57:00 +00:00
|
|
|
virtual bool input( FL_OBJECT *, long );
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Update dialog before showing it
|
2000-10-13 05:57:05 +00:00
|
|
|
virtual void update(bool switched = false);
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Apply from dialog (modify or create inset)
|
|
|
|
virtual void apply();
|
|
|
|
/// Pointer to the actual instantiation of the xform's form
|
2000-10-03 05:53:25 +00:00
|
|
|
virtual FL_FORM * form() const;
|
2000-08-03 12:56:25 +00:00
|
|
|
|
2000-07-07 07:46:37 +00:00
|
|
|
///
|
|
|
|
void updateBrowser( FL_OBJECT *, std::vector<string> const & ) const;
|
|
|
|
///
|
|
|
|
void setBibButtons( State ) const;
|
|
|
|
///
|
|
|
|
void setCiteButtons( State ) const;
|
|
|
|
///
|
|
|
|
void setSize( int, bool ) const;
|
|
|
|
///
|
|
|
|
FD_form_citation * build_citation();
|
|
|
|
|
|
|
|
/// Real GUI implementation.
|
|
|
|
FD_form_citation * dialog_;
|
2000-08-04 13:12:30 +00:00
|
|
|
///
|
|
|
|
std::vector<string> citekeys;
|
|
|
|
///
|
|
|
|
std::vector<string> bibkeys;
|
|
|
|
///
|
|
|
|
std::vector<string> bibkeysInfo;
|
2000-07-07 07:46:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|