]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiExternal.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiExternal.h
index db86460c1d2669a503b3d2fd41c53a4d1ab64988..e1157e977c3e9935f4e757b2f6828df10cd708ce 100644 (file)
 #include "GuiDialog.h"
 #include "ui_ExternalUi.h"
 
-#include "support/types.h"
-
 #include "insets/InsetExternal.h"
 
 #include <QHash>
 
-#include <string>
-#include <vector>
-
 namespace lyx {
-
-namespace external {
-
-class Template;
-class RotationDataType;
-
-} // namespace external
-
 namespace frontend {
 
 class GuiExternal : public GuiDialog, public Ui::ExternalUi
@@ -48,19 +35,17 @@ private Q_SLOTS:
        void bbChanged();
        void browseClicked();
        void change_adaptor();
-       void editClicked();
-       void extraChanged(const QString&);
-       void formatChanged(const QString&);
+       void extraChanged(const QString &);
+       void formatChanged(const QString &);
        void getbbClicked();
        void sizeChanged();
        void templateChanged();
        void widthUnitChanged();
 
-public:
+private:
        ///
        typedef QHash<QString, QString> MapType;
 
-private:
        ///
        bool activateAspectratio() const;
        /// Apply changes
@@ -69,11 +54,9 @@ private:
        void updateContents();
        /// Helper function called when the template is changed.
        void updateTemplate();
-       /// get bounding box from file
-       void getBB();
-
        ///
-       MapType extra_;
+       bool usingScale() const;
+
        ///
        bool initialiseParams(std::string const & data);
        /// clean-up on hide.
@@ -83,26 +66,15 @@ private:
        ///
        bool isBufferDependent() const { return true; }
 
-       ///
-       void editExternal();
-       ///
-       std::vector<std::string> templates() const;
-       ///
-       int templateNumber(std::string const &) const;
-       ///
-       external::Template getTemplate(int) const;
-       ///
-       std::string templateFilters(std::string const & template_name) const;
        ///
        QString browse(QString const & input_file,
                                 QString const & template_name) const;
 
-       /// Read the Bounding Box from a eps or ps-file
-       std::string const readBB(std::string const & file);
        ///
-private:
+       MapType extra_;
        ///
        InsetExternalParams params_;
+       ///
        bool bbChanged_;
 };