fb2list.hpp 356 B

1234567891011121314151617181920
  1. #ifndef FB2LIST_H
  2. #define FB2LIST_H
  3. #include <QTreeView>
  4. class FbListView : public QTreeView
  5. {
  6. Q_OBJECT
  7. public:
  8. explicit FbListView(QWidget *parent = 0);
  9. protected:
  10. void currentChanged(const QModelIndex &current, const QModelIndex &previous);
  11. signals:
  12. void showCurrent(const QString &name);
  13. };
  14. #endif // FB2LIST_H