Skip to content

Commit 53160c7

Browse files
committed
[composer] Port composer manager to layout manager
Also switch to using a proper model to show/edit compositions in the dialog.
1 parent 3aef32a commit 53160c7

File tree

7 files changed

+222
-211
lines changed

7 files changed

+222
-211
lines changed

python/core/composer/qgslayoutmanager.sip

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,13 @@ class QgsLayoutManager : QObject
2222
QString generateUniqueTitle() const;
2323

2424
signals:
25-
void compositionAdded( const QString& name );
26-
void compositionRemoved( const QString& name );
27-
void compositionAboutToBeRemoved( const QString& name );
25+
26+
void compositionAboutToBeAdded( const QString &name );
27+
void compositionAdded( const QString &name );
28+
void compositionRemoved( const QString &name );
29+
void compositionAboutToBeRemoved( const QString &name );
30+
void compositionRenamed( QgsComposition *composition, const QString &newName );
31+
2832

2933
};
3034

0 commit comments

Comments
 (0)