I changed the dateListView.cpp to the following...BUT i am still not able to edit all the propertys of a QListWidget in Designer.
dateViewList
:: dateViewList( QWidget* parent
){
}
dateViewList :: dateViewList( QWidget* parent )
: QListWidget(parent)
{
}
To copy to clipboard, switch view to plain text mode
So i am wondering is this part right in the customwidgetplugin.cpp
};
QListWidget *createWidget(QWidget*parent){returnnewdateListWidget()
};
To copy to clipboard, switch view to plain text mode
Or should it be
QWidget* createWidget(QWidget *parent){return new dateListWidget()}
To copy to clipboard, switch view to plain text mode
Or even
dateListView
* createWidget
(QWidget *parent
){return new dateListWidget
() }
dateListView* createWidget(QWidget *parent){return new dateListWidget() }
To copy to clipboard, switch view to plain text mode
Bookmarks