mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
660ce9aab6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29807 a592a061-630c-0410-9148-cb99ea01b6c8
92 lines
1.9 KiB
C++
92 lines
1.9 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiGraphics.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Herbert Voß
|
|
* \author Baruch Even
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUIGRAPHICS_H
|
|
#define GUIGRAPHICS_H
|
|
|
|
#include "GuiDialog.h"
|
|
#include "ui_GraphicsUi.h"
|
|
|
|
#include "insets/InsetGraphicsParams.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <vector>
|
|
|
|
class QString;
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
class GuiGraphics : public GuiDialog, public Ui::GraphicsUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiGraphics(GuiView & lv);
|
|
void setAutoText();
|
|
|
|
private Q_SLOTS:
|
|
void change_adaptor();
|
|
void changeGroup(int);
|
|
void changeBB();
|
|
void on_newGroupPB_clicked();
|
|
void on_browsePB_clicked();
|
|
void on_getPB_clicked();
|
|
void on_scaleCB_toggled(bool);
|
|
void on_WidthCB_toggled(bool);
|
|
void on_HeightCB_toggled(bool);
|
|
void on_angle_textChanged(const QString &);
|
|
|
|
private:
|
|
///
|
|
bool isValid();
|
|
/// Dialog inherited methods
|
|
//@{
|
|
void applyView();
|
|
void updateContents() {}
|
|
bool initialiseParams(std::string const & data);
|
|
void clearParams();
|
|
void dispatchParams();
|
|
bool isBufferDependent() const { return true; }
|
|
//@}
|
|
|
|
///
|
|
void paramsToDialog(InsetGraphicsParams const & params);
|
|
|
|
/// get bounding box from file
|
|
void getBB();
|
|
/// Browse for a file
|
|
QString browse(QString const &) const;
|
|
/// Read the Bounding Box from a eps or ps-file
|
|
std::string readBoundingBox(std::string const & file);
|
|
/// test if file exist
|
|
bool isFileNameValid(std::string const & fname) const;
|
|
|
|
/// Control the bb
|
|
bool bbChanged;
|
|
/// Store the LaTeX names for the rotation origins.
|
|
std::vector<std::string> origin_ltx;
|
|
///
|
|
InsetGraphicsParams params_;
|
|
/// the current graphics group
|
|
std::string current_group_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUIGRAPHICS_H
|