]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiBibitem.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiBibitem.h
1 // -*- C++ -*-
2 /**
3  * \file GuiBibitem.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef GUIBIBITEM_H
14 #define GUIBIBITEM_H
15
16 #include "GuiDialog.h"
17 #include "ui_BibitemUi.h"
18
19 #include "insets/InsetCommandParams.h"
20
21 namespace lyx {
22 namespace frontend {
23
24 class GuiBibitem : public GuiCommand, public Ui::BibitemUi
25 {
26         Q_OBJECT
27
28 public:
29         GuiBibitem(GuiView & lv);
30
31 private Q_SLOTS:
32         void change_adaptor();
33
34 private:
35         ///
36         bool isValid();
37         /// Apply changes
38         void applyView();
39         /// update
40         void updateContents();
41 };
42
43 } // namespace frontend
44 } // namespace lyx
45
46 #endif // GUIBIBITEM_H