GUI: tweaks in library dialog for sorting and filter
This commit is contained in:
parent
9f31414179
commit
4cffff7bde
|
@ -36,6 +36,8 @@ LibraryDialog::LibraryDialog(QWidget *parent) :
|
|||
{
|
||||
ui->setupUi(this);
|
||||
ui->buttonSave->setEnabled(false);
|
||||
ui->sortFunctions->setEnabled(false);
|
||||
ui->filter->setEnabled(false);
|
||||
}
|
||||
|
||||
LibraryDialog::~LibraryDialog()
|
||||
|
@ -81,6 +83,8 @@ void LibraryDialog::openCfg()
|
|||
foreach(const struct CppcheckLibraryData::Function &function, data.functions) {
|
||||
ui->functions->addItem(function.name);
|
||||
}
|
||||
ui->sortFunctions->setEnabled(!data.functions.empty());
|
||||
ui->filter->setEnabled(!data.functions.empty());
|
||||
ignoreChanges = false;
|
||||
}
|
||||
}
|
||||
|
@ -115,6 +119,8 @@ void LibraryDialog::addFunction()
|
|||
data.functions.append(f);
|
||||
ui->functions->addItem(f.name);
|
||||
ui->buttonSave->setEnabled(true);
|
||||
ui->sortFunctions->setEnabled(!data.functions.empty());
|
||||
ui->filter->setEnabled(!data.functions.empty());
|
||||
}
|
||||
delete d;
|
||||
}
|
||||
|
@ -145,9 +151,14 @@ void LibraryDialog::sortFunctions(bool sort)
|
|||
ui->functions->sortItems();
|
||||
else {
|
||||
ignoreChanges = true;
|
||||
CppcheckLibraryData::Function *selfunction = currentFunction();
|
||||
ui->functions->clear();
|
||||
foreach(const struct CppcheckLibraryData::Function &function, data.functions)
|
||||
ui->functions->addItem(function.name);
|
||||
foreach(const struct CppcheckLibraryData::Function &function, data.functions) {
|
||||
QListWidgetItem *item = new QListWidgetItem(ui->functions);
|
||||
item->setText(function.name);
|
||||
item->setSelected(selfunction == &function);
|
||||
ui->functions->addItem(item);
|
||||
}
|
||||
if (!ui->filter->text().isEmpty())
|
||||
filterFunctions(ui->filter->text());
|
||||
ignoreChanges = false;
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
<item>
|
||||
<widget class="QPushButton" name="sortFunctions">
|
||||
<property name="text">
|
||||
<string>AZ</string>
|
||||
<string>Sort</string>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
|
@ -118,6 +118,13 @@
|
|||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string>Filter:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="filter"/>
|
||||
</item>
|
||||
|
|
Loading…
Reference in New Issue