fb2list.cpp 607 B

1234567891011121314151617181920
  1. #include "fb2list.hpp"
  2. //---------------------------------------------------------------------------
  3. // FbListView
  4. //---------------------------------------------------------------------------
  5. FbListView::FbListView(QWidget *parent)
  6. : QTreeView(parent)
  7. {
  8. setAllColumnsShowFocus(true);
  9. setRootIsDecorated(false);
  10. }
  11. void FbListView::currentChanged(const QModelIndex &current, const QModelIndex &previous)
  12. {
  13. QTreeView::currentChanged(current, previous);
  14. QModelIndex index = model()->index(current.row(), 0);
  15. emit showCurrent(model()->data(index).toString());
  16. }