Класс CMainView - сцена и просмотр. конструктор:
CMainView::CMainView(QWidget *parent) :
QGraphicsView(parent)
{
setScene(new QGraphicsScene(rect()));
QPixmap human(":/human/humanwithgun.PNG");
scene()->addPixmap(human);
}
Класс СHuman, конструктор:
CHuman::CHuman(QWidget *parent)
{
QPixmap p(":/resourse/human/humanwithgun.PNG");
human->setPixmap (p);
}
Вопрос: как добавить на сцену картинку именно из класса, а не непосредственно в CMainView?