cosmetics

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20217 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-09-11 18:33:42 +00:00
parent 34492a9d03
commit 470aba2a0e
77 changed files with 166 additions and 175 deletions

View File

@ -98,7 +98,7 @@ public:
* to a particular dialog. * to a particular dialog.
*/ */
//@{ //@{
virtual Controller & controller() const = 0; virtual Controller & controller() = 0;
//@} //@}
/** \c Button controller part /** \c Button controller part

View File

@ -65,7 +65,7 @@ public:
} }
bool isClosing() const { return false; } bool isClosing() const { return false; }
void partialUpdateView(int /*id*/) {} void partialUpdateView(int /*id*/) {}
Controller & controller() const { return *controller_; } Controller & controller() { return *controller_; }
std::string name() const { return name_; } std::string name() const { return name_; }
//@} //@}
private: private:

View File

@ -46,7 +46,7 @@ GuiBibitemDialog::GuiBibitemDialog(LyXView & lv)
} }
ControlCommand & GuiBibitemDialog::controller() const ControlCommand & GuiBibitemDialog::controller()
{ {
return static_cast<ControlCommand &>(GuiDialog::controller()); return static_cast<ControlCommand &>(GuiDialog::controller());
} }
@ -65,7 +65,7 @@ void GuiBibitemDialog::closeEvent(QCloseEvent *e)
} }
void GuiBibitemDialog::update_contents() void GuiBibitemDialog::updateContents()
{ {
keyED->setText(toqstr(controller().params()["key"])); keyED->setText(toqstr(controller().params()["key"]));
labelED->setText(toqstr(controller().params()["label"])); labelED->setText(toqstr(controller().params()["label"]));

View File

@ -33,7 +33,7 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlCommand & controller() const; ControlCommand & controller();
private: private:
/// ///
@ -41,7 +41,7 @@ private:
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -111,7 +111,7 @@ GuiBibtexDialog::GuiBibtexDialog(LyXView & lv)
} }
ControlBibtex & GuiBibtexDialog::controller() const ControlBibtex & GuiBibtexDialog::controller()
{ {
return static_cast<ControlBibtex &>(GuiDialog::controller()); return static_cast<ControlBibtex &>(GuiDialog::controller());
} }
@ -233,7 +233,7 @@ void GuiBibtexDialog::deletePressed()
void GuiBibtexDialog::databaseChanged() void GuiBibtexDialog::databaseChanged()
{ {
deletePB->setEnabled(!readOnly() && databaseLW->currentRow() != -1); deletePB->setEnabled(!controller().isBufferReadonly() && databaseLW->currentRow() != -1);
} }
@ -250,7 +250,7 @@ void GuiBibtexDialog::closeEvent(QCloseEvent *e)
} }
void GuiBibtexDialog::update_contents() void GuiBibtexDialog::updateContents()
{ {
bool bibtopic = controller().usingBibtopic(); bool bibtopic = controller().usingBibtopic();

View File

@ -55,13 +55,13 @@ private:
private: private:
/// parent controller /// parent controller
ControlBibtex & controller() const; ControlBibtex & controller();
/// ///
virtual bool isValid(); virtual bool isValid();
/// Apply changes /// Apply changes
virtual void applyView(); virtual void applyView();
/// update /// update
virtual void update_contents(); virtual void updateContents();
/// ///
GuiBibtexAddDialog * add_; GuiBibtexAddDialog * add_;

View File

@ -112,7 +112,7 @@ GuiBoxDialog::GuiBoxDialog(LyXView & lv)
} }
ControlBox & GuiBoxDialog::controller() const ControlBox & GuiBoxDialog::controller()
{ {
return static_cast<ControlBox &>(GuiDialog::controller()); return static_cast<ControlBox &>(GuiDialog::controller());
} }
@ -172,7 +172,7 @@ void GuiBoxDialog::restoreClicked()
} }
void GuiBoxDialog::update_contents() void GuiBoxDialog::updateContents()
{ {
string type(controller().params().type); string type(controller().params().type);
for (unsigned int i = 0; i < gui_names_.size(); ++i) { for (unsigned int i = 0; i < gui_names_.size(); ++i) {

View File

@ -39,7 +39,7 @@ private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlBox & controller() const; ControlBox & controller();
/// add and remove special lengths /// add and remove special lengths
void setSpecial(bool ibox); void setSpecial(bool ibox);
/// only show valid inner box items /// only show valid inner box items
@ -48,7 +48,7 @@ private:
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// ///
std::vector<std::string> ids_; std::vector<std::string> ids_;

View File

@ -43,7 +43,7 @@ GuiBranchDialog::GuiBranchDialog(LyXView & lv)
} }
ControlBranch & GuiBranchDialog::controller() const ControlBranch & GuiBranchDialog::controller()
{ {
return static_cast<ControlBranch &>(GuiDialog::controller()); return static_cast<ControlBranch &>(GuiDialog::controller());
} }
@ -62,7 +62,7 @@ void GuiBranchDialog::change_adaptor()
} }
void GuiBranchDialog::update_contents() void GuiBranchDialog::updateContents()
{ {
typedef BranchList::const_iterator const_iterator; typedef BranchList::const_iterator const_iterator;

View File

@ -33,11 +33,11 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlBranch & controller() const; ControlBranch & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// Update dialog before showing it /// Update dialog before showing it
void update_contents(); void updateContents();
}; };

View File

@ -46,7 +46,7 @@ GuiChangesDialog::GuiChangesDialog(LyXView & lv)
} }
ControlChanges & GuiChangesDialog::controller() const ControlChanges & GuiChangesDialog::controller()
{ {
return static_cast<ControlChanges &>(GuiDialog::controller()); return static_cast<ControlChanges &>(GuiDialog::controller());
} }
@ -59,7 +59,7 @@ void GuiChangesDialog::closeEvent(QCloseEvent *e)
} }
void GuiChangesDialog::update_contents() void GuiChangesDialog::updateContents()
{ {
docstring text; docstring text;
docstring author = controller().getChangeAuthor(); docstring author = controller().getChangeAuthor();

View File

@ -33,8 +33,8 @@ protected Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
ControlChanges & controller() const; ControlChanges & controller();
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -106,7 +106,7 @@ GuiCharacterDialog::GuiCharacterDialog(LyXView & lv)
} }
ControlCharacter & GuiCharacterDialog::controller() const ControlCharacter & GuiCharacterDialog::controller()
{ {
return static_cast<ControlCharacter &>(GuiDialog::controller()); return static_cast<ControlCharacter &>(GuiDialog::controller());
} }
@ -156,7 +156,7 @@ static int findPos2nd(vector<std::pair<A,B> > const & vec, B const & val)
} }
void GuiCharacterDialog::update_contents() void GuiCharacterDialog::updateContents()
{ {
ControlCharacter const & ctrl = controller(); ControlCharacter const & ctrl = controller();

View File

@ -35,11 +35,11 @@ protected Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlCharacter & controller() const; ControlCharacter & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
std::vector<FamilyPair> family; std::vector<FamilyPair> family;
std::vector<SeriesPair> series; std::vector<SeriesPair> series;

View File

@ -102,7 +102,7 @@ GuiCitationDialog::GuiCitationDialog(LyXView & lv)
} }
ControlCitation & GuiCitationDialog::controller() const ControlCitation & GuiCitationDialog::controller()
{ {
return static_cast<ControlCitation &>(GuiDialog::controller()); return static_cast<ControlCitation &>(GuiDialog::controller());
} }

View File

@ -53,7 +53,7 @@ public Q_SLOTS:
private: private:
/// ///
ControlCitation & controller() const; ControlCitation & controller();
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// prepares a call to GuiCitation::searchKeys when we /// prepares a call to GuiCitation::searchKeys when we

View File

@ -110,13 +110,13 @@ GuiDelimiterDialog::GuiDelimiterDialog(LyXView & lv)
} }
ControlMath & GuiDelimiterDialog::controller() const ControlMath & GuiDelimiterDialog::controller()
{ {
return static_cast<ControlMath &>(GuiDialog::controller()); return static_cast<ControlMath &>(GuiDialog::controller());
} }
char_type GuiDelimiterDialog::doMatch(char_type const symbol) const char_type GuiDelimiterDialog::doMatch(char_type const symbol)
{ {
string const & str = controller().texName(symbol); string const & str = controller().texName(symbol);
string match; string match;

View File

@ -39,11 +39,11 @@ public Q_SLOTS:
private: private:
/// ///
char_type doMatch(char_type const symbol) const; char_type doMatch(char_type const symbol);
/// ///
void updateTeXCode(int size); void updateTeXCode(int size);
/// parent controller /// parent controller
ControlMath & controller() const; ControlMath & controller();
/// TeX code that will be inserted. /// TeX code that will be inserted.
QString tex_code_; QString tex_code_;

View File

@ -114,12 +114,6 @@ bool GuiDialog::isVisibleView() const
} }
bool GuiDialog::readOnly() const
{
return controller().isBufferReadonly();
}
void GuiDialog::showView() void GuiDialog::showView()
{ {
QSize const hint = sizeHint(); QSize const hint = sizeHint();
@ -160,7 +154,7 @@ void GuiDialog::updateView()
// protect the BC from unwarranted state transitions // protect the BC from unwarranted state transitions
updating_ = true; updating_ = true;
update_contents(); updateContents();
updating_ = false; updating_ = false;
setUpdatesEnabled(true); setUpdatesEnabled(true);

View File

@ -50,7 +50,6 @@ public Q_SLOTS:
void slotClose(); void slotClose();
public: public:
/** Check whether we may apply our data. /** Check whether we may apply our data.
* *
* The buttons are disabled if not and (re-)enabled if yes. * The buttons are disabled if not and (re-)enabled if yes.
@ -68,8 +67,6 @@ public:
void setViewTitle(docstring const & title); void setViewTitle(docstring const & title);
///
bool readOnly() const;
/// the dialog has changed contents /// the dialog has changed contents
virtual void changed(); virtual void changed();
@ -77,7 +74,7 @@ public:
/// default: do nothing /// default: do nothing
virtual void applyView() {} virtual void applyView() {}
/// default: do nothing /// default: do nothing
virtual void update_contents() {} virtual void updateContents() {}
protected: protected:
/// Hide the dialog. /// Hide the dialog.
@ -126,7 +123,7 @@ public:
* Methods to access the various components making up a dialog. * Methods to access the various components making up a dialog.
*/ */
//@{ //@{
virtual Controller & controller() const { return *controller_; } virtual Controller & controller() { return *controller_; }
//@} //@}
/** Defaults to nothing. Can be used by the Controller, however, to /** Defaults to nothing. Can be used by the Controller, however, to

View File

@ -612,7 +612,7 @@ GuiDocumentDialog::GuiDocumentDialog(LyXView & lv)
} }
ControlDocument & GuiDocumentDialog::controller() const ControlDocument & GuiDocumentDialog::controller()
{ {
return static_cast<ControlDocument &>(GuiDialog::controller()); return static_cast<ControlDocument &>(GuiDialog::controller());
} }
@ -849,7 +849,7 @@ void GuiDocumentDialog::classChanged()
params.setJustBaseClass(tc); params.setJustBaseClass(tc);
if (lyxrc.auto_reset_options) if (lyxrc.auto_reset_options)
params.useClassDefaults(); params.useClassDefaults();
update_contents(); updateContents();
} }
@ -1407,7 +1407,7 @@ void GuiDocumentDialog::applyView()
} }
void GuiDocumentDialog::update_contents() void GuiDocumentDialog::updateContents()
{ {
updateParams(controller().params()); updateParams(controller().params());
} }
@ -1428,7 +1428,7 @@ void GuiDocumentDialog::useClassDefaults()
params.setJustBaseClass(latexModule->classCO->currentIndex()); params.setJustBaseClass(latexModule->classCO->currentIndex());
params.useClassDefaults(); params.useClassDefaults();
update_contents(); updateContents();
} }

View File

@ -114,12 +114,12 @@ private:
std::vector<std::string> lang_; std::vector<std::string> lang_;
/// parent controller /// parent controller
ControlDocument & controller() const; ControlDocument & controller();
private: private:
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// save as default template /// save as default template
void saveDocDefault(); void saveDocDefault();
/// reset to default params /// reset to default params

View File

@ -40,7 +40,7 @@ GuiERTDialog::GuiERTDialog(LyXView & lv)
} }
ControlERT & GuiERTDialog::controller() const ControlERT & GuiERTDialog::controller()
{ {
return static_cast<ControlERT &>(GuiDialog::controller()); return static_cast<ControlERT &>(GuiDialog::controller());
} }
@ -68,7 +68,7 @@ void GuiERTDialog::applyView()
} }
void GuiERTDialog::update_contents() void GuiERTDialog::updateContents()
{ {
switch (controller().status()) { switch (controller().status()) {
case InsetERT::Open: openRB->setChecked(true); break; case InsetERT::Open: openRB->setChecked(true); break;

View File

@ -32,11 +32,11 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlERT & controller() const; ControlERT & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -43,7 +43,7 @@ GuiErrorListDialog::GuiErrorListDialog(LyXView & lv)
} }
ControlErrorList & GuiErrorListDialog::controller() const ControlErrorList & GuiErrorListDialog::controller()
{ {
return static_cast<ControlErrorList &>(GuiDialog::controller()); return static_cast<ControlErrorList &>(GuiDialog::controller());
} }
@ -78,7 +78,7 @@ void GuiErrorListDialog::select(QListWidgetItem * wi)
} }
void GuiErrorListDialog::update_contents() void GuiErrorListDialog::updateContents()
{ {
setViewTitle(from_utf8(controller().name())); setViewTitle(from_utf8(controller().name()));
errorsLW->clear(); errorsLW->clear();

View File

@ -35,11 +35,11 @@ private:
void closeEvent(QCloseEvent *); void closeEvent(QCloseEvent *);
void showEvent(QShowEvent *); void showEvent(QShowEvent *);
/// parent controller /// parent controller
ControlErrorList & controller() const; ControlErrorList & controller();
/// select an entry /// select an entry
void select(QListWidgetItem *); void select(QListWidgetItem *);
/// update contents /// update contents
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -184,7 +184,7 @@ GuiExternalDialog::GuiExternalDialog(LyXView & lv)
} }
ControlExternal & GuiExternalDialog::controller() const ControlExternal & GuiExternalDialog::controller()
{ {
return static_cast<ControlExternal &>(GuiDialog::controller()); return static_cast<ControlExternal &>(GuiDialog::controller());
} }
@ -359,7 +359,7 @@ void setDisplay(QCheckBox & displayCB, QComboBox & showCO, QLineEdit & scaleED,
showCO.setEnabled(!no_display && !read_only); showCO.setEnabled(!no_display && !read_only);
displayCB.setChecked(!no_display); displayCB.setChecked(!no_display);
scaleED.setEnabled(!no_display && !read_only); scaleED.setEnabled(!no_display && !read_only);
scaleED.setText(toqstr(convert<string>(scale))); scaleED.setText(QString::number(scale));
} }
@ -390,7 +390,7 @@ void getDisplay(external::DisplayType & display,
if (!displayCB.isChecked()) if (!displayCB.isChecked())
display = external::NoDisplay; display = external::NoDisplay;
scale = convert<int>(fromqstr(scaleED.text())); scale = scaleED.text().toInt();
} }
@ -429,7 +429,7 @@ void setSize(QLineEdit & widthED, QComboBox & widthUnitCO,
widthED.setText(toqstr(scale)); widthED.setText(toqstr(scale));
widthUnitCO.setCurrentIndex(0); widthUnitCO.setCurrentIndex(0);
} else { } else {
widthED.setText(toqstr(convert<string>(data.width.value()))); widthED.setText(QString::number(data.width.value()));
// Because 'Scale' is position 0... // Because 'Scale' is position 0...
// Note also that width cannot be zero here, so // Note also that width cannot be zero here, so
// we don't need to worry about the default unit. // we don't need to worry about the default unit.
@ -493,10 +493,10 @@ void setCrop(QCheckBox & clipCB,
{ {
clipCB.setChecked(data.clip); clipCB.setChecked(data.clip);
graphics::BoundingBox const & bbox = data.bbox; graphics::BoundingBox const & bbox = data.bbox;
xlED.setText(toqstr(convert<string>(bbox.xl))); xlED.setText(QString::number(bbox.xl));
ybED.setText(toqstr(convert<string>(bbox.yb))); ybED.setText(QString::number(bbox.yb));
xrED.setText(toqstr(convert<string>(bbox.xr))); xrED.setText(QString::number(bbox.xr));
ytED.setText(toqstr(convert<string>(bbox.yt))); ytED.setText(QString::number(bbox.yt));
} }
@ -511,10 +511,10 @@ void getCrop(external::ClipData & data,
if (!bb_changed) if (!bb_changed)
return; return;
data.bbox.xl = convert<int>(fromqstr(xlED.text())); data.bbox.xl = xlED.text().toInt();
data.bbox.yb = convert<int>(fromqstr(ybED.text())); data.bbox.yb = ybED.text().toInt();
data.bbox.xr = convert<int>(fromqstr(xrED.text())); data.bbox.xr = xrED.text().toInt();
data.bbox.yt = convert<int>(fromqstr(ytED.text())); data.bbox.yt = ytED.text().toInt();
} }
@ -522,7 +522,7 @@ void getExtra(external::ExtraData & data,
GuiExternalDialog::MapType const & extra) GuiExternalDialog::MapType const & extra)
{ {
typedef GuiExternalDialog::MapType MapType; typedef GuiExternalDialog::MapType MapType;
MapType::const_iterator it = extra.begin(); MapType::const_iterator it = extra.begin();
MapType::const_iterator const end = extra.end(); MapType::const_iterator const end = extra.end();
for (; it != end; ++it) for (; it != end; ++it)
data.set(it->first, trim(fromqstr(it->second))); data.set(it->first, trim(fromqstr(it->second)));
@ -532,7 +532,7 @@ void getExtra(external::ExtraData & data,
void GuiExternalDialog::update_contents() void GuiExternalDialog::updateContents()
{ {
tab->setCurrentIndex(0); tab->setCurrentIndex(0);
InsetExternalParams const & params = controller().params(); InsetExternalParams const & params = controller().params();
@ -549,7 +549,7 @@ void GuiExternalDialog::update_contents()
setDisplay(*displayCB, *showCO, setDisplay(*displayCB, *showCO,
*displayscaleED, *displayscaleED,
params.display, params.lyxscale, readOnly()); params.display, params.lyxscale, controller().isBufferReadonly());
setRotation(*angleED, *originCO, params.rotationdata); setRotation(*angleED, *originCO, params.rotationdata);

View File

@ -46,11 +46,11 @@ public:
// //
bool activateAspectratio() const; bool activateAspectratio() const;
/// parent controller /// parent controller
ControlExternal & controller() const; ControlExternal & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// Helper function called when the template is changed. /// Helper function called when the template is changed.
void updateTemplate(); void updateTemplate();
/// get bounding box from file /// get bounding box from file

View File

@ -54,7 +54,7 @@ GuiFloatDialog::GuiFloatDialog(LyXView & lv)
} }
ControlFloat & GuiFloatDialog::controller() const ControlFloat & GuiFloatDialog::controller()
{ {
return static_cast<ControlFloat &>(GuiDialog::controller()); return static_cast<ControlFloat &>(GuiDialog::controller());
} }
@ -73,7 +73,7 @@ void GuiFloatDialog::closeEvent(QCloseEvent * e)
} }
void GuiFloatDialog::update_contents() void GuiFloatDialog::updateContents()
{ {
floatFP->set(controller().params()); floatFP->set(controller().params());
} }

View File

@ -32,11 +32,11 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlFloat & controller() const; ControlFloat & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -211,7 +211,7 @@ GuiGraphicsDialog::GuiGraphicsDialog(LyXView & lv)
} }
ControlGraphics & GuiGraphicsDialog::controller() const ControlGraphics & GuiGraphicsDialog::controller()
{ {
return static_cast<ControlGraphics &>(GuiDialog::controller()); return static_cast<ControlGraphics &>(GuiDialog::controller());
} }
@ -381,7 +381,7 @@ static int getItemNo(const vector<string> & v, string const & s)
} }
void GuiGraphicsDialog::update_contents() void GuiGraphicsDialog::updateContents()
{ {
// clear and fill in the comboboxes // clear and fill in the comboboxes
vector<string> const bb_units = frontend::getBBUnits(); vector<string> const bb_units = frontend::getBBUnits();

View File

@ -44,12 +44,12 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlGraphics & controller() const; ControlGraphics & controller();
bool isValid(); bool isValid();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// get bounding box from file /// get bounding box from file
void getBB(); void getBB();

View File

@ -78,7 +78,7 @@ GuiIncludeDialog::GuiIncludeDialog(LyXView & lv)
} }
ControlInclude & GuiIncludeDialog::controller() const ControlInclude & GuiIncludeDialog::controller()
{ {
return static_cast<ControlInclude &>(GuiDialog::controller()); return static_cast<ControlInclude &>(GuiDialog::controller());
} }
@ -186,7 +186,7 @@ void GuiIncludeDialog::browseClicked()
} }
void GuiIncludeDialog::update_contents() void GuiIncludeDialog::updateContents()
{ {
InsetCommandParams const & params = controller().params(); InsetCommandParams const & params = controller().params();

View File

@ -40,7 +40,7 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlInclude & controller() const; ControlInclude & controller();
/// ///
void updateLists(); void updateLists();
/// validate listings parameters and return an error message, if any /// validate listings parameters and return an error message, if any
@ -51,7 +51,7 @@ private:
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// edit the child document, .lyx file will be opened in lyx /// edit the child document, .lyx file will be opened in lyx
/// other formats will be edited by external applications. /// other formats will be edited by external applications.
void edit(); void edit();

View File

@ -75,7 +75,7 @@ GuiIndexDialogBase::GuiIndexDialogBase(LyXView & lv,
} }
ControlCommand & GuiIndexDialogBase::controller() const ControlCommand & GuiIndexDialogBase::controller()
{ {
return static_cast<ControlCommand &>(GuiDialog::controller()); return static_cast<ControlCommand &>(GuiDialog::controller());
} }
@ -100,7 +100,7 @@ void GuiIndexDialogBase::closeEvent(QCloseEvent * e)
} }
void GuiIndexDialogBase::update_contents() void GuiIndexDialogBase::updateContents()
{ {
docstring const contents = controller().params()["name"]; docstring const contents = controller().params()["name"];
keywordED->setText(toqstr(contents)); keywordED->setText(toqstr(contents));

View File

@ -36,13 +36,13 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlCommand & controller() const; ControlCommand & controller();
/// ///
bool isValid(); bool isValid();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
/// ///
QString label_; QString label_;

View File

@ -240,12 +240,12 @@ GuiListingsDialog::GuiListingsDialog(LyXView & lv)
listingsTB->setPlainText( listingsTB->setPlainText(
qt_("Input listing parameters on the right. Enter ? for a list of parameters.")); qt_("Input listing parameters on the right. Enter ? for a list of parameters."));
update_contents(); updateContents();
} }
ControlListings & GuiListingsDialog::controller() const ControlListings & GuiListingsDialog::controller()
{ {
return static_cast<ControlListings &>(GuiDialog::controller()); return static_cast<ControlListings &>(GuiDialog::controller());
} }
@ -457,7 +457,7 @@ static string plainParam(std::string const & par)
} }
void GuiListingsDialog::update_contents() void GuiListingsDialog::updateContents()
{ {
// set default values // set default values
listingsTB->setPlainText( listingsTB->setPlainText(

View File

@ -46,13 +46,13 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlListings & controller() const; ControlListings & controller();
/// return false if validate_listings_params returns error /// return false if validate_listings_params returns error
bool isValid(); bool isValid();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -117,7 +117,7 @@ GuiLogDialog::GuiLogDialog(LyXView & lv)
} }
ControlLog & GuiLogDialog::controller() const ControlLog & GuiLogDialog::controller()
{ {
return static_cast<ControlLog &>(GuiDialog::controller()); return static_cast<ControlLog &>(GuiDialog::controller());
} }
@ -132,11 +132,11 @@ void GuiLogDialog::closeEvent(QCloseEvent * e)
void GuiLogDialog::updateClicked() void GuiLogDialog::updateClicked()
{ {
update_contents(); updateContents();
} }
void GuiLogDialog::update_contents() void GuiLogDialog::updateContents()
{ {
setViewTitle(controller().title()); setViewTitle(controller().title());

View File

@ -31,11 +31,11 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlLog & controller() const; ControlLog & controller();
/// Apply changes /// Apply changes
void applyView() {} void applyView() {}
/// update /// update
void update_contents(); void updateContents();
/// log syntax highlighter /// log syntax highlighter
LogHighlighter * highlighter; LogHighlighter * highlighter;

View File

@ -65,7 +65,7 @@ GuiMathMatrixDialog::GuiMathMatrixDialog(LyXView & lv)
} }
ControlMath & GuiMathMatrixDialog::controller() const ControlMath & GuiMathMatrixDialog::controller()
{ {
return static_cast<ControlMath &>(GuiDialog::controller()); return static_cast<ControlMath &>(GuiDialog::controller());
} }

View File

@ -38,7 +38,7 @@ public Q_SLOTS:
void change_adaptor(); void change_adaptor();
/// parent controller /// parent controller
ControlMath & controller() const; ControlMath & controller();
}; };
} // namespace frontend } // namespace frontend

View File

@ -53,7 +53,7 @@ GuiNomenclDialog::GuiNomenclDialog(LyXView & lv)
} }
ControlCommand & GuiNomenclDialog::controller() const ControlCommand & GuiNomenclDialog::controller()
{ {
return static_cast<ControlCommand &>(GuiDialog::controller()); return static_cast<ControlCommand &>(GuiDialog::controller());
} }
@ -78,7 +78,7 @@ void GuiNomenclDialog::closeEvent(QCloseEvent * e)
} }
void GuiNomenclDialog::update_contents() void GuiNomenclDialog::updateContents()
{ {
prefixED->setText(toqstr(controller().params()["prefix"])); prefixED->setText(toqstr(controller().params()["prefix"]));
symbolED->setText(toqstr(controller().params()["symbol"])); symbolED->setText(toqstr(controller().params()["symbol"]));

View File

@ -36,13 +36,13 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlCommand & controller() const; ControlCommand & controller();
/// ///
bool isValid(); bool isValid();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -42,7 +42,7 @@ GuiNoteDialog::GuiNoteDialog(LyXView & lv)
} }
ControlNote & GuiNoteDialog::controller() const ControlNote & GuiNoteDialog::controller()
{ {
return static_cast<ControlNote &>(GuiDialog::controller()); return static_cast<ControlNote &>(GuiDialog::controller());
} }
@ -61,7 +61,7 @@ void GuiNoteDialog::change_adaptor()
} }
void GuiNoteDialog::update_contents() void GuiNoteDialog::updateContents()
{ {
QRadioButton * rb = 0; QRadioButton * rb = 0;

View File

@ -29,11 +29,11 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlNote & controller() const; ControlNote & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// Update dialog before showing it /// Update dialog before showing it
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -92,7 +92,7 @@ GuiParagraphDialog::GuiParagraphDialog(LyXView & lv)
} }
ControlParagraph & GuiParagraphDialog::controller() const ControlParagraph & GuiParagraphDialog::controller()
{ {
return static_cast<ControlParagraph &>(GuiDialog::controller()); return static_cast<ControlParagraph &>(GuiDialog::controller());
} }
@ -202,7 +202,7 @@ void GuiParagraphDialog::applyView()
} }
void GuiParagraphDialog::update_contents() void GuiParagraphDialog::updateContents()
{ {
ParagraphParameters const & params = controller().params(); ParagraphParameters const & params = controller().params();

View File

@ -50,11 +50,11 @@ private Q_SLOTS:
/// ///
void enableLinespacingValue(int); void enableLinespacingValue(int);
/// parent controller /// parent controller
ControlParagraph & controller() const; ControlParagraph & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -1959,7 +1959,7 @@ GuiPrefsDialog::GuiPrefsDialog(LyXView & lv)
} }
ControlPrefs & GuiPrefsDialog::controller() const ControlPrefs & GuiPrefsDialog::controller()
{ {
return static_cast<ControlPrefs &>(GuiDialog::controller()); return static_cast<ControlPrefs &>(GuiDialog::controller());
} }
@ -2023,7 +2023,7 @@ void GuiPrefsDialog::applyView()
apply(controller().rc()); apply(controller().rc());
} }
void GuiPrefsDialog::update_contents() void GuiPrefsDialog::updateContents()
{ {
updateRc(controller().rc()); updateRc(controller().rc());
} }

View File

@ -358,11 +358,11 @@ public:
/// ///
Movers & movers(); Movers & movers();
/// parent controller /// parent controller
ControlPrefs & controller() const; ControlPrefs & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update (do we need this?) /// update (do we need this?)
void update_contents(); void updateContents();
std::vector<PrefModule *> modules_; std::vector<PrefModule *> modules_;
}; };

View File

@ -67,7 +67,7 @@ GuiPrintDialog::GuiPrintDialog(LyXView & lv)
} }
ControlPrint & GuiPrintDialog::controller() const ControlPrint & GuiPrintDialog::controller()
{ {
return static_cast<ControlPrint &>(GuiDialog::controller()); return static_cast<ControlPrint &>(GuiDialog::controller());
} }
@ -117,7 +117,7 @@ void GuiPrintDialog::pagerangeChanged()
} }
void GuiPrintDialog::update_contents() void GuiPrintDialog::updateContents()
{ {
PrinterParams & pp = controller().params(); PrinterParams & pp = controller().params();

View File

@ -35,13 +35,13 @@ private Q_SLOTS:
void printerChanged(); void printerChanged();
void pagerangeChanged(); void pagerangeChanged();
/// parent controller /// parent controller
ControlPrint & controller() const; ControlPrint & controller();
private: private:
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -88,7 +88,7 @@ GuiRefDialog::GuiRefDialog(LyXView & lv)
} }
ControlRef & GuiRefDialog::controller() const ControlRef & GuiRefDialog::controller()
{ {
return static_cast<ControlRef &>(GuiDialog::controller()); return static_cast<ControlRef &>(GuiDialog::controller());
} }
@ -107,7 +107,7 @@ void GuiRefDialog::gotoClicked()
void GuiRefDialog::selectionChanged() void GuiRefDialog::selectionChanged()
{ {
if (readOnly()) if (controller().isBufferReadonly())
return; return;
QList<QListWidgetItem *> selections = refsLW->selectedItems(); QList<QListWidgetItem *> selections = refsLW->selectedItems();
@ -121,7 +121,7 @@ void GuiRefDialog::selectionChanged()
void GuiRefDialog::refHighlighted(QListWidgetItem * sel) void GuiRefDialog::refHighlighted(QListWidgetItem * sel)
{ {
if (readOnly()) if (controller().isBufferReadonly())
return; return;
/* int const cur_item = refsLW->currentRow(); /* int const cur_item = refsLW->currentRow();
@ -144,7 +144,7 @@ void GuiRefDialog::refHighlighted(QListWidgetItem * sel)
void GuiRefDialog::refSelected(QListWidgetItem * sel) void GuiRefDialog::refSelected(QListWidgetItem * sel)
{ {
if (readOnly()) if (controller().isBufferReadonly())
return; return;
/* int const cur_item = refsLW->currentRow(); /* int const cur_item = refsLW->currentRow();
@ -187,7 +187,7 @@ void GuiRefDialog::closeEvent(QCloseEvent * e)
} }
void GuiRefDialog::update_contents() void GuiRefDialog::updateContents()
{ {
InsetCommandParams const & params = controller().params(); InsetCommandParams const & params = controller().params();
@ -196,14 +196,14 @@ void GuiRefDialog::update_contents()
referenceED->setText(toqstr(params["reference"])); referenceED->setText(toqstr(params["reference"]));
nameED->setText(toqstr(params["name"])); nameED->setText(toqstr(params["name"]));
nameED->setReadOnly(!nameAllowed() && !readOnly()); nameED->setReadOnly(!nameAllowed() && !controller().isBufferReadonly());
// restore type settings for new insets // restore type settings for new insets
if (params["reference"].empty()) if (params["reference"].empty())
typeCO->setCurrentIndex(orig_type); typeCO->setCurrentIndex(orig_type);
else else
typeCO->setCurrentIndex(InsetRef::getType(params.getCmdName())); typeCO->setCurrentIndex(InsetRef::getType(params.getCmdName()));
typeCO->setEnabled(typeAllowed() && !readOnly()); typeCO->setEnabled(typeAllowed() && !controller().isBufferReadonly());
if (!typeAllowed()) if (!typeAllowed())
typeCO->setCurrentIndex(0); typeCO->setCurrentIndex(0);

View File

@ -44,13 +44,13 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlRef & controller() const; ControlRef & controller();
/// ///
bool isValid(); bool isValid();
/// apply changes /// apply changes
void applyView(); void applyView();
/// update dialog /// update dialog
void update_contents(); void updateContents();
/// is name allowed for this ? /// is name allowed for this ?
bool nameAllowed(); bool nameAllowed();

View File

@ -63,7 +63,7 @@ GuiSearchDialog::GuiSearchDialog(LyXView & lv)
} }
ControlSearch & GuiSearchDialog::controller() const ControlSearch & GuiSearchDialog::controller()
{ {
return static_cast<ControlSearch &>(GuiDialog::controller()); return static_cast<ControlSearch &>(GuiDialog::controller());
} }
@ -91,8 +91,8 @@ void GuiSearchDialog::findChanged()
replaceallPB->setEnabled(false); replaceallPB->setEnabled(false);
} else { } else {
findPB->setEnabled(true); findPB->setEnabled(true);
replacePB->setEnabled(!readOnly()); replacePB->setEnabled(!controller().isBufferReadonly());
replaceallPB->setEnabled(!readOnly()); replaceallPB->setEnabled(!controller().isBufferReadonly());
} }
} }

View File

@ -38,7 +38,7 @@ private:
void showView(); void showView();
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlSearch & controller() const; ControlSearch & controller();
/// ///
void find(docstring const & str, bool casesens, void find(docstring const & str, bool casesens,
bool words, bool backwards); bool words, bool backwards);

View File

@ -55,7 +55,7 @@ GuiSendtoDialog::GuiSendtoDialog(LyXView & lv)
} }
ControlSendto & GuiSendtoDialog::controller() const ControlSendto & GuiSendtoDialog::controller()
{ {
return static_cast<ControlSendto &>(GuiDialog::controller()); return static_cast<ControlSendto &>(GuiDialog::controller());
} }
@ -74,7 +74,7 @@ void GuiSendtoDialog::closeEvent(QCloseEvent * e)
} }
void GuiSendtoDialog::update_contents() void GuiSendtoDialog::updateContents()
{ {
all_formats_ = controller().allFormats(); all_formats_ = controller().allFormats();

View File

@ -41,13 +41,13 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlSendto & controller() const; ControlSendto & controller();
/// ///
bool isValid(); bool isValid();
/// Apply from dialog /// Apply from dialog
void applyView(); void applyView();
/// Update the dialog /// Update the dialog
void update_contents(); void updateContents();
/// ///
std::vector<Format const *> all_formats_; std::vector<Format const *> all_formats_;

View File

@ -37,7 +37,7 @@ GuiShowFileDialog::GuiShowFileDialog(LyXView & lv)
} }
ControlShowFile & GuiShowFileDialog::controller() const ControlShowFile & GuiShowFileDialog::controller()
{ {
return static_cast<ControlShowFile &>(GuiDialog::controller()); return static_cast<ControlShowFile &>(GuiDialog::controller());
} }
@ -50,7 +50,7 @@ void GuiShowFileDialog::closeEvent(QCloseEvent * e)
} }
void GuiShowFileDialog::update_contents() void GuiShowFileDialog::updateContents()
{ {
setWindowTitle(toqstr(controller().getFileName())); setWindowTitle(toqstr(controller().getFileName()));

View File

@ -30,9 +30,9 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlShowFile & controller() const; ControlShowFile & controller();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -62,7 +62,7 @@ GuiSpellcheckerDialog::GuiSpellcheckerDialog(LyXView & lv)
} }
ControlSpellchecker & GuiSpellcheckerDialog::controller() const ControlSpellchecker & GuiSpellcheckerDialog::controller()
{ {
return static_cast<ControlSpellchecker &>(GuiDialog::controller()); return static_cast<ControlSpellchecker &>(GuiDialog::controller());
} }
@ -131,7 +131,7 @@ void GuiSpellcheckerDialog::reject()
} }
void GuiSpellcheckerDialog::update_contents() void GuiSpellcheckerDialog::updateContents()
{ {
if (isVisibleView() || controller().exitEarly()) if (isVisibleView() || controller().exitEarly())
controller().check(); controller().check();

View File

@ -46,14 +46,14 @@ private:
/// update from controller /// update from controller
void partialUpdate(int id); void partialUpdate(int id);
/// parent controller /// parent controller
ControlSpellchecker & controller() const; ControlSpellchecker & controller();
//// ////
void accept(); void accept();
void add(); void add();
void ignore(); void ignore();
void replace(); void replace();
/// ///
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -148,7 +148,7 @@ GuiTabularDialog::GuiTabularDialog(LyXView & lv)
} }
ControlTabular & GuiTabularDialog::controller() const ControlTabular & GuiTabularDialog::controller()
{ {
return static_cast<ControlTabular &>(GuiDialog::controller()); return static_cast<ControlTabular &>(GuiDialog::controller());
} }
@ -600,7 +600,7 @@ void GuiTabularDialog::update_borders()
} }
void GuiTabularDialog::update_contents() void GuiTabularDialog::updateContents()
{ {
controller().initialiseParams(string()); controller().initialiseParams(string());

View File

@ -71,13 +71,13 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlTabular & controller() const; ControlTabular & controller();
/// ///
bool isValid() { return true; } bool isValid() { return true; }
/// update borders /// update borders
void update_borders(); void update_borders();
/// update /// update
void update_contents(); void updateContents();
/// save some values before closing the gui /// save some values before closing the gui
void closeGUI(); void closeGUI();
}; };

View File

@ -47,7 +47,7 @@ GuiTabularCreateDialog::GuiTabularCreateDialog(LyXView & lv)
} }
ControlTabularCreate & GuiTabularCreateDialog::controller() const ControlTabularCreate & GuiTabularCreateDialog::controller()
{ {
return static_cast<ControlTabularCreate &>(GuiDialog::controller()); return static_cast<ControlTabularCreate &>(GuiDialog::controller());
} }

View File

@ -31,7 +31,7 @@ private Q_SLOTS:
void rowsChanged(int); void rowsChanged(int);
/// parent controller /// parent controller
ControlTabularCreate & controller() const; ControlTabularCreate & controller();
private: private:
/// Apply changes /// Apply changes

View File

@ -60,7 +60,7 @@ GuiTexinfoDialog::GuiTexinfoDialog(LyXView & lv)
} }
ControlTexinfo & GuiTexinfoDialog::controller() const ControlTexinfo & GuiTexinfoDialog::controller()
{ {
return static_cast<ControlTexinfo &>(GuiDialog::controller()); return static_cast<ControlTexinfo &>(GuiDialog::controller());
} }

View File

@ -42,7 +42,7 @@ private:
/// ///
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// ///
ControlTexinfo & controller() const; ControlTexinfo & controller();
/// ///
void updateStyles(ControlTexinfo::texFileSuffix); void updateStyles(ControlTexinfo::texFileSuffix);
/// ///

View File

@ -64,7 +64,7 @@ GuiThesaurusDialog::GuiThesaurusDialog(LyXView & lv)
} }
ControlThesaurus & GuiThesaurusDialog::controller() const ControlThesaurus & GuiThesaurusDialog::controller()
{ {
return static_cast<ControlThesaurus &>(GuiDialog::controller()); return static_cast<ControlThesaurus &>(GuiDialog::controller());
} }
@ -91,7 +91,7 @@ void GuiThesaurusDialog::entryChanged()
void GuiThesaurusDialog::selectionChanged() void GuiThesaurusDialog::selectionChanged()
{ {
int const col = meaningsTV->currentColumn(); int const col = meaningsTV->currentColumn();
if (col<0 || readOnly()) if (col < 0 || controller().isBufferReadonly())
return; return;
replaceED->setText(meaningsTV->currentItem()->text(col)); replaceED->setText(meaningsTV->currentItem()->text(col));
@ -138,7 +138,7 @@ void GuiThesaurusDialog::updateLists()
} }
void GuiThesaurusDialog::update_contents() void GuiThesaurusDialog::updateContents()
{ {
entryED->setText(toqstr(controller().text())); entryED->setText(toqstr(controller().text()));
replaceED->setText(""); replaceED->setText("");

View File

@ -39,9 +39,9 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlThesaurus & controller() const; ControlThesaurus & controller();
/// update /// update
void update_contents(); void updateContents();
/// ///
void updateLists(); void updateLists();
}; };

View File

@ -51,7 +51,7 @@ GuiURLDialog::GuiURLDialog(LyXView & lv)
} }
ControlCommand & GuiURLDialog::controller() const ControlCommand & GuiURLDialog::controller()
{ {
return static_cast<ControlCommand &>(GuiDialog::controller()); return static_cast<ControlCommand &>(GuiDialog::controller());
} }
@ -71,7 +71,7 @@ void GuiURLDialog::closeEvent(QCloseEvent * e)
void GuiURLDialog::update_contents() void GuiURLDialog::updateContents()
{ {
InsetCommandParams const & params = controller().params(); InsetCommandParams const & params = controller().params();

View File

@ -32,13 +32,13 @@ public Q_SLOTS:
private: private:
void closeEvent(QCloseEvent *); void closeEvent(QCloseEvent *);
/// parent controller /// parent controller
ControlCommand & controller() const; ControlCommand & controller();
/// ///
bool isValid(); bool isValid();
/// apply dialog /// apply dialog
void applyView(); void applyView();
/// update dialog /// update dialog
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -87,7 +87,7 @@ GuiVSpaceDialog::GuiVSpaceDialog(LyXView & lv)
} }
ControlVSpace & GuiVSpaceDialog::controller() const ControlVSpace & GuiVSpaceDialog::controller()
{ {
return static_cast<ControlVSpace &>(GuiDialog::controller()); return static_cast<ControlVSpace &>(GuiDialog::controller());
} }
@ -181,7 +181,7 @@ void GuiVSpaceDialog::applyView()
} }
void GuiVSpaceDialog::update_contents() void GuiVSpaceDialog::updateContents()
{ {
setWidgetsFromVSpace(controller().params(), setWidgetsFromVSpace(controller().params(),
spacingCO, valueLE, unitCO, keepCB); spacingCO, valueLE, unitCO, keepCB);

View File

@ -35,11 +35,11 @@ private Q_SLOTS:
private: private:
/// parent controller /// parent controller
ControlVSpace & controller() const; ControlVSpace & controller();
/// Apply from dialog /// Apply from dialog
void applyView(); void applyView();
/// Update the dialog /// Update the dialog
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -62,7 +62,7 @@ GuiWrapDialog::GuiWrapDialog(LyXView & lv)
} }
ControlWrap & GuiWrapDialog::controller() const ControlWrap & GuiWrapDialog::controller()
{ {
return static_cast<ControlWrap &>(GuiDialog::controller()); return static_cast<ControlWrap &>(GuiDialog::controller());
} }
@ -118,7 +118,7 @@ static string const numtostr(double val)
} }
void GuiWrapDialog::update_contents() void GuiWrapDialog::updateContents()
{ {
InsetWrapParams & params = controller().params(); InsetWrapParams & params = controller().params();

View File

@ -32,11 +32,11 @@ private Q_SLOTS:
private: private:
void closeEvent(QCloseEvent * e); void closeEvent(QCloseEvent * e);
/// parent controller /// parent controller
ControlWrap & controller() const; ControlWrap & controller();
/// Apply changes /// Apply changes
void applyView(); void applyView();
/// update /// update
void update_contents(); void updateContents();
}; };
} // namespace frontend } // namespace frontend

View File

@ -51,7 +51,7 @@ void lengthAutoToWidgets(QLineEdit * input, LengthCombo * combo,
//FIXME setAutoTextCB should really take an argument, as indicated, that //FIXME setAutoTextCB should really take an argument, as indicated, that
//determines what text is to be written for "auto". But making //determines what text is to be written for "auto". But making
//that work involves more extensive revisions than we now want //that work involves more extensive revisions than we now want
//to make, since "auto" also appears in update_contents() (see //to make, since "auto" also appears in updateContents() (see
//GuiGraphics.cpp). //GuiGraphics.cpp).
//The right way to do this, I think, would be to define a class //The right way to do this, I think, would be to define a class
//checkedLengthSet (and a partnering labeledLengthSete) that encapsulated //checkedLengthSet (and a partnering labeledLengthSete) that encapsulated