lyx_mirror/src/frontends/qt4/GuiHyperlink.h
Uwe Stöhr 7075eaadef The huge URL patch:
- rename the lfun to href-insert.png
- rename the files to Hyperlink...
- the former URLUi produces now \href commands (hyperref)

Only missing thing is the lyx2lyx conversion routine - this will be done by Richard

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20950 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-13 19:06:09 +00:00

47 lines
818 B
C++

// -*- C++ -*-
/**
* \file GuiHyperlink.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUIHYPERLINK_H
#define GUIHYPERLINK_H
#include "GuiDialog.h"
#include "ui_HyperlinkUi.h"
#include "insets/InsetCommandParams.h"
namespace lyx {
namespace frontend {
class GuiHyperlink : public GuiCommand, public Ui::HyperlinkUi
{
Q_OBJECT
public:
GuiHyperlink(LyXView & lv);
public Q_SLOTS:
void changed_adaptor();
private:
void closeEvent(QCloseEvent *);
///
bool isValid();
/// apply dialog
void applyView();
/// update dialog
void updateContents();
};
} // namespace frontend
} // namespace lyx
#endif // GUIHYPERLINK_H