add signal prototypes

This commit is contained in:
Christoph Holzheuer
2025-09-02 16:58:56 +02:00
parent 147769bf60
commit 3e7b65dca5
10 changed files with 118 additions and 42 deletions

View File

@@ -76,6 +76,17 @@ void XQChildModel::addModelData( const XQNodePtr& contentRoot )
}
//! SLOT als weiterleitung vom SIGNAL itemchanged
void XQChildModel::onItemChanged(XQItem& item )
{
qDebug() << " --- Child item changed: " << item.text();
}
//! Erzeugt eine model-section und fügt den zugehörigen header ein.
void XQChildModel::addSectionEntry( const QString& key, const XQNodePtr& contentEntry )
{
XQModelSection& section = _sections.at( key );
@@ -89,7 +100,8 @@ void XQChildModel::addSectionEntry( const QString& key, const XQNodePtr& content
}
}
//! erzeugt ein adhoc-contextmenu, je nachdem welche aktionen gerade möflich sind.
//! erzeugt ein adhoc-contextmenu, je nachdem welche aktionen gerade möglich sind.
void XQChildModel::initContextMenu()
{