mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
41 lines
756 B
C
41 lines
756 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file GBibItem.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author John Spray
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef GBIBITEM_H
|
||
|
#define GBIBITEM_H
|
||
|
|
||
|
#include "GViewBase.h"
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace frontend {
|
||
|
|
||
|
class ControlCommand;
|
||
|
|
||
|
/** This class provides a GTK+ implementation of the BibItem Dialog.
|
||
|
*/
|
||
|
class GBibItem : public GViewCB<ControlCommand, GViewGladeB> {
|
||
|
public:
|
||
|
GBibItem(Dialog & parent);
|
||
|
private:
|
||
|
virtual void apply();
|
||
|
virtual void doBuild();
|
||
|
virtual void update();
|
||
|
void changed();
|
||
|
|
||
|
Gtk::Entry * keyentry_;
|
||
|
Gtk::Entry * labelentry_;
|
||
|
};
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // GBIBITEM_H
|