void RazorTaskBar::refreshTaskList() { XfitMan xf = xfitMan(); QList<Window> tmp = xf.getClientList(); //qDebug() << "** Fill ********************************"; //foreach (Window wnd, tmp) // if (xf->acceptWindow(wnd)) qDebug() << XfitMan::debugWindow(wnd); //qDebug() << "****************************************"; QMutableHashIterator<Window, RazorTaskButton*> i(mButtonsHash); while (i.hasNext()) { i.next(); int n = tmp.removeAll(i.key()); if (!n) { delete i.value(); i.remove(); } } foreach (Window wnd, tmp) { if (xf.acceptWindow(wnd)) { RazorTaskButton* btn = new RazorTaskButton(wnd, this); btn->setToolButtonStyle(mButtonStyle); if (buttonMaxWidth == -1) { btn->setMaximumWidth(btn->height()); } else { btn->setMaximumWidth(buttonMaxWidth); } mButtonsHash.insert(wnd, btn); // -1 is here due the last stretchable item mLayout->insertWidget(layout()->count()-1, btn); // now I want to set higher stretchable priority for buttons // to suppress stretchItem (last item) default value which // will remove that anoying aggresive space at the end -- petr mLayout->setStretch(layout()->count()-2, 1); } } refreshButtonVisibility(); activeWindowChanged(); }
void RazorTaskBar::refreshTaskList() { XfitMan xf = xfitMan(); QList<Window> tmp = xf.getClientList(); //qDebug() << "** Fill ********************************"; //foreach (Window wnd, tmp) // if (xf->acceptWindow(wnd)) qDebug() << XfitMan::debugWindow(wnd); //qDebug() << "****************************************"; QMutableHashIterator<Window, RazorTaskButton*> i(mButtonsHash); while (i.hasNext()) { i.next(); int n = tmp.removeAll(i.key()); if (!n) { delete i.value(); i.remove(); } } foreach (Window wnd, tmp) { if (xf.acceptWindow(wnd)) { RazorTaskButton* btn = new RazorTaskButton(wnd, this); btn->setToolButtonStyle(mButtonStyle); mButtonsHash.insert(wnd, btn); mLayout->addWidget(btn); } } refreshButtonVisibility(); mLayout->invalidate(); activeWindowChanged(); realign(); }