4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
8 * \author Angus Leeming
10 * Full author contact details are available in file CREDITS.
13 #ifndef GUIHYPERLINK_H
14 #define GUIHYPERLINK_H
16 #include "GuiDialog.h"
17 #include "ui_HyperlinkUi.h"
19 #include "insets/InsetCommandParams.h"
24 class GuiHyperlink
: public GuiDialog
, public Ui::HyperlinkUi
30 GuiHyperlink(GuiView
& lv
);
33 void changed_adaptor();
41 void updateContents() {}
43 bool initialiseParams(std::string
const & data
);
45 void paramsToDialog(InsetCommandParams
const & icp
);
47 void clearParams() { params_
.clear(); }
49 void dispatchParams();
51 bool isBufferDependent() const { return true; }
55 InsetCommandParams params_
;
58 } // namespace frontend
61 #endif // GUIHYPERLINK_H