merge with dev

This commit is contained in:
U-PC-BUREAU\jacques
2018-10-19 19:26:14 +02:00
198 changed files with 2052 additions and 1128 deletions

View File

@@ -160,12 +160,6 @@ void History::initHistory ()
bookmarkModel->clear ();
}
void History::clearParamChanges ()
{
initHistory ();
}
void History::historySelectionChanged ()
{
@@ -222,9 +216,13 @@ void History::bookmarkSelectionChanged ()
}
}
void History::procParamsChanged (ProcParams* params, ProcEvent ev, Glib::ustring descr, ParamsEdited* paramsEdited)
void History::procParamsChanged(
const ProcParams* params,
const ProcEvent& ev,
const Glib::ustring& descr,
const ParamsEdited* paramsEdited
)
{
// to prevent recursion, we filter out the events triggered by the history and events that should not be registered
if (ev == EvHistoryBrowsed || ev == EvMonitorTransform || descr == "") {
return;
@@ -308,6 +306,11 @@ void History::procParamsChanged (ProcParams* params, ProcEvent ev, Glib::ustring
selchangebm.block (false);
}
void History::clearParamChanges ()
{
initHistory ();
}
void History::addBookmarkWithText (Glib::ustring text)
{