ui: Extended wizzard with simple setup and vs solution parsing
* removed blurry coati background * added language selection to project type window * search for headers in project paths option as part of simple setup * show popup containing list of all analyzed symbols * show build file path in summary and allow refreshing * only force refresh after editing project and something changed
This commit is contained in:
@@ -56,10 +56,14 @@ void QtListItemWidget::setFocus()
|
||||
void QtListItemWidget::handleButtonPress()
|
||||
{
|
||||
QFileDialog dialog(this);
|
||||
QListView *l = dialog.findChild<QListView*>("listView");
|
||||
|
||||
dialog.setFileMode(QFileDialog::Directory);
|
||||
|
||||
if (m_data->text().size())
|
||||
{
|
||||
dialog.setDirectory(m_data->text());
|
||||
}
|
||||
|
||||
QListView *l = dialog.findChild<QListView*>("listView");
|
||||
if (l)
|
||||
{
|
||||
l->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
@@ -69,6 +73,7 @@ void QtListItemWidget::handleButtonPress()
|
||||
{
|
||||
t->setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
}
|
||||
|
||||
if (dialog.exec())
|
||||
{
|
||||
QStringList list = dialog.selectedFiles();
|
||||
@@ -229,6 +234,11 @@ void QtDirectoryListBox::resize()
|
||||
height += (m_list->itemWidget(m_list->item(0))->height() + 1) * m_list->count() + 7;
|
||||
}
|
||||
|
||||
if (height < 0)
|
||||
{
|
||||
height = 0;
|
||||
}
|
||||
|
||||
m_list->setMaximumHeight(height);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user