lyx_mirror/src/frontends/gtk/GBibItem.h
John Spray 9ee46b846e Add GTK bibitem dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10761 a592a061-630c-0410-9148-cb99ea01b6c8
2006-01-21 20:06:38 +00:00

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