]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiGraphics.h
Complete the removal of the embedding stuff. Maybe. It's hard to be sure we got every...
[lyx.git] / src / frontends / qt4 / GuiGraphics.h
index 338af748925653a28699aa1ba315082fefd4c7ae..3e767bb38ac32039149c1ae907f1f57b0b06d38b 100644 (file)
@@ -45,16 +45,13 @@ private Q_SLOTS:
        void change_bb();
        void on_browsePB_clicked();
        void on_getPB_clicked();
-       void on_editPB_clicked();
-       void on_filename_textChanged(const QString &);
-       void on_embedCB_toggled(bool);
        void on_scaleCB_toggled(bool);
        void on_WidthCB_toggled(bool);
        void on_HeightCB_toggled(bool);
        void on_angle_textChanged(const QString &);
 
 private:
-       void closeEvent(QCloseEvent * e);
+       ///
        bool isValid();
        /// Apply changes
        void applyView();
@@ -75,25 +72,19 @@ private:
        bool isBufferDependent() const { return true; }
 
        /// Browse for a file
-       docstring const browse(docstring const &) const;
+       QString browse(QString const &) const;
        /// Read the Bounding Box from a eps or ps-file
-       std::string const readBB(std::string const & file);
+       std::string readBoundingBox(std::string const & file);
        /// Control the bb
        bool bbChanged;
        /// test if file exist
-       bool isFilenameValid(std::string const & fname) const;
-       /// edit file
-       void editGraphics();
+       bool isFileNameValid(std::string const & fname) const;
 
 private:
        ///
        InsetGraphicsParams params_;
 };
 
-
-/// get the units for the bounding box
-std::vector<std::string> const getBBUnits();
-
 } // namespace frontend
 } // namespace lyx