ich hab eine QListBoxI beim click auf ein item soll ein menu erscheinen in dem ich eine function aussuchen kann dies klappt auch schon soweit:
Code: Alles auswählen
void ListBoxDemo::popup(QListBoxItem* Item, const QPoint & point)
{
menu->insertItem("About", this, SLOT(function()));
menu->popup( point );
}
Code: Alles auswählen
void ListBoxDemo::popup(QListBoxItem* Item, const QPoint & point)
{
menu->insertItem("About", this, SLOT(function(QListBoxItem*)));
menu->popup( point );
}
void ListBoxDemo::function( QListBoxItem * Item)
{
QMessageBox::about(this, "Hello",Item->text ());
}
thx