mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Use the currentItemChanged() signal instead of itemSelectionChanged()
because in Qt 4.2 the current item has not been updated yet when itemSelectionChanged() is emitted. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22544 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0572822ec9
commit
58a0626e80
@ -66,7 +66,7 @@ GuiBibtex::GuiBibtex(GuiView & lv)
|
||||
this, SLOT(downPressed()));
|
||||
connect(styleCB, SIGNAL(editTextChanged(QString)),
|
||||
this, SLOT(change_adaptor()));
|
||||
connect(databaseLW, SIGNAL(itemSelectionChanged()),
|
||||
connect(databaseLW, SIGNAL(currentItemChanged(QListWidgetItem *, QListWidgetItem *)),
|
||||
this, SLOT(databaseChanged()));
|
||||
connect(bibtocCB, SIGNAL(clicked()),
|
||||
this, SLOT(change_adaptor()));
|
||||
@ -91,7 +91,7 @@ GuiBibtex::GuiBibtex(GuiView & lv)
|
||||
this, SLOT(addDatabase()));
|
||||
connect(add_->bibLW, SIGNAL(itemActivated(QListWidgetItem *)),
|
||||
add_, SLOT(accept()));
|
||||
connect(add_->bibLW, SIGNAL(itemSelectionChanged()),
|
||||
connect(add_->bibLW, SIGNAL(currentItemChanged(QListWidgetItem *, QListWidgetItem *)),
|
||||
this, SLOT(availableChanged()));
|
||||
connect(add_->browsePB, SIGNAL(clicked()),
|
||||
this, SLOT(browseBibPressed()));
|
||||
@ -265,11 +265,12 @@ void GuiBibtex::downPressed()
|
||||
|
||||
void GuiBibtex::databaseChanged()
|
||||
{
|
||||
deletePB->setEnabled(!isBufferReadonly() && databaseLW->currentRow() != -1);
|
||||
upPB->setEnabled(!isBufferReadonly() && databaseLW->count() > 1 &&
|
||||
databaseLW->currentRow() > 0);
|
||||
downPB->setEnabled(!isBufferReadonly() && databaseLW->count() > 1 &&
|
||||
databaseLW->currentRow() < databaseLW->count() - 1);
|
||||
bool readOnly = isBufferReadonly();
|
||||
int count = databaseLW->count();
|
||||
int row = databaseLW->currentRow();
|
||||
deletePB->setEnabled(!readOnly && row != -1);
|
||||
upPB->setEnabled(!readOnly && count > 1 && row > 0);
|
||||
downPB->setEnabled(!readOnly && count > 1 && row < count - 1);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user