mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-27 14:29:21 +00:00
* src/frontends/qt4/GuiGraphics.{cpp,h}:
* src/frontends/qt4/ui/GraphicsUi.ui: - now that we have a context menu to edit graphics, remove the Edit button from the dialog, as discussed in this thread: http://marc.info/?l=lyx-devel&m=118344997913166&w=2 The same should be done for other insets that have an edit function. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23911 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
057dd755f5
commit
c6007086b1
@ -282,15 +282,8 @@ void GuiGraphics::on_getPB_clicked()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void GuiGraphics::on_editPB_clicked()
|
|
||||||
{
|
|
||||||
editGraphics();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void GuiGraphics::on_filename_textChanged(const QString & filename)
|
void GuiGraphics::on_filename_textChanged(const QString & filename)
|
||||||
{
|
{
|
||||||
editPB->setDisabled(filename.isEmpty());
|
|
||||||
EmbeddedFile file = EmbeddedFile(fromqstr(filename), fromqstr(bufferFilepath()));
|
EmbeddedFile file = EmbeddedFile(fromqstr(filename), fromqstr(bufferFilepath()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -570,9 +563,6 @@ void GuiGraphics::updateContents()
|
|||||||
else
|
else
|
||||||
origin->setCurrentIndex(0);
|
origin->setCurrentIndex(0);
|
||||||
|
|
||||||
// disable edit button when no filename is present
|
|
||||||
editPB->setDisabled(filename->text().isEmpty());
|
|
||||||
|
|
||||||
//// latex section
|
//// latex section
|
||||||
latexoptions->setText(toqstr(igp.special));
|
latexoptions->setText(toqstr(igp.special));
|
||||||
}
|
}
|
||||||
@ -788,15 +778,6 @@ bool GuiGraphics::isFilenameValid(string const & fname) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void GuiGraphics::editGraphics()
|
|
||||||
{
|
|
||||||
applyView();
|
|
||||||
string const lfun =
|
|
||||||
InsetGraphicsMailer::params2string(params_, buffer());
|
|
||||||
dispatch(FuncRequest(LFUN_GRAPHICS_EDIT, lfun));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
char const * const bb_units[] = { "bp", "cm", "mm", "in" };
|
char const * const bb_units[] = { "bp", "cm", "mm", "in" };
|
||||||
|
@ -45,7 +45,6 @@ private Q_SLOTS:
|
|||||||
void change_bb();
|
void change_bb();
|
||||||
void on_browsePB_clicked();
|
void on_browsePB_clicked();
|
||||||
void on_getPB_clicked();
|
void on_getPB_clicked();
|
||||||
void on_editPB_clicked();
|
|
||||||
void on_filename_textChanged(const QString &);
|
void on_filename_textChanged(const QString &);
|
||||||
void on_scaleCB_toggled(bool);
|
void on_scaleCB_toggled(bool);
|
||||||
void on_WidthCB_toggled(bool);
|
void on_WidthCB_toggled(bool);
|
||||||
@ -81,8 +80,6 @@ private:
|
|||||||
bool bbChanged;
|
bool bbChanged;
|
||||||
/// test if file exist
|
/// test if file exist
|
||||||
bool isFilenameValid(std::string const & fname) const;
|
bool isFilenameValid(std::string const & fname) const;
|
||||||
/// edit file
|
|
||||||
void editGraphics();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
///
|
///
|
||||||
|
@ -56,19 +56,6 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="3" >
|
|
||||||
<widget class="QPushButton" name="editPB" >
|
|
||||||
<property name="text" >
|
|
||||||
<string>&Edit</string>
|
|
||||||
</property>
|
|
||||||
<property name="autoDefault" >
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
<property name="default" >
|
|
||||||
<bool>false</bool>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="0" column="2" >
|
<item row="0" column="2" >
|
||||||
<widget class="QPushButton" name="browsePB" >
|
<widget class="QPushButton" name="browsePB" >
|
||||||
<property name="toolTip" >
|
<property name="toolTip" >
|
||||||
@ -751,7 +738,6 @@
|
|||||||
<tabstop>TabWidget</tabstop>
|
<tabstop>TabWidget</tabstop>
|
||||||
<tabstop>filename</tabstop>
|
<tabstop>filename</tabstop>
|
||||||
<tabstop>browsePB</tabstop>
|
<tabstop>browsePB</tabstop>
|
||||||
<tabstop>editPB</tabstop>
|
|
||||||
<tabstop>scaleCB</tabstop>
|
<tabstop>scaleCB</tabstop>
|
||||||
<tabstop>Scale</tabstop>
|
<tabstop>Scale</tabstop>
|
||||||
<tabstop>WidthCB</tabstop>
|
<tabstop>WidthCB</tabstop>
|
||||||
|
Loading…
Reference in New Issue
Block a user