lyx_mirror/src/frontends/qt4/GuiURL.h
André Pönitz 99c9b0fbcf next ones
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20819 a592a061-630c-0410-9148-cb99ea01b6c8
2007-10-07 14:41:49 +00:00

47 lines
770 B
C++

// -*- C++ -*-
/**
* \file GuiURL.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 GUIURL_H
#define GUIURL_H
#include "GuiDialog.h"
#include "ui_URLUi.h"
#include "insets/InsetCommandParams.h"
namespace lyx {
namespace frontend {
class GuiURL : public GuiCommand, public Ui::URLUi
{
Q_OBJECT
public:
GuiURL(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 // GUIURL_H