mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
9ee46b846e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10761 a592a061-630c-0410-9148-cb99ea01b6c8
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
|