mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
5707a39041
* ExternalUi.ui: - use LengthCombo for width unit. - use reliable item data, instead of doing manual recounts. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28164 a592a061-630c-0410-9148-cb99ea01b6c8
85 lines
1.5 KiB
C++
85 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiExternal.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Asger Alstrup
|
|
* \author John Levon
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUIEXTERNAL_H
|
|
#define GUIEXTERNAL_H
|
|
|
|
#include "GuiDialog.h"
|
|
#include "ui_ExternalUi.h"
|
|
|
|
#include "insets/InsetExternal.h"
|
|
|
|
#include <QHash>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiExternal : public GuiDialog, public Ui::ExternalUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiExternal(GuiView & lv);
|
|
|
|
private Q_SLOTS:
|
|
void bbChanged();
|
|
void browseClicked();
|
|
void change_adaptor();
|
|
void extraChanged(const QString &);
|
|
void formatChanged(const QString &);
|
|
void getbbClicked();
|
|
void sizeChanged();
|
|
void templateChanged();
|
|
void widthUnitChanged();
|
|
|
|
private:
|
|
///
|
|
typedef QHash<QString, QString> MapType;
|
|
|
|
///
|
|
bool activateAspectratio() const;
|
|
/// Apply changes
|
|
void applyView();
|
|
/// update
|
|
void updateContents();
|
|
/// Helper function called when the template is changed.
|
|
void updateTemplate();
|
|
///
|
|
bool usingScale() const;
|
|
|
|
///
|
|
bool initialiseParams(std::string const & data);
|
|
/// clean-up on hide.
|
|
void clearParams();
|
|
/// clean-up on hide.
|
|
void dispatchParams();
|
|
///
|
|
bool isBufferDependent() const { return true; }
|
|
|
|
///
|
|
QString browse(QString const & input_file,
|
|
QString const & template_name) const;
|
|
|
|
///
|
|
MapType extra_;
|
|
///
|
|
InsetExternalParams params_;
|
|
///
|
|
bool bbChanged_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUIEXTERNAL_H
|