mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
35 lines
710 B
C++
35 lines
710 B
C++
#ifndef YACREADER_SIDEBAR_H
|
|
#define YACREADER_SIDEBAR_H
|
|
|
|
#include <QWidget>
|
|
|
|
class YACReaderTreeView;
|
|
class YACReaderLibraryListWidget;
|
|
class YACReaderSearchLineEdit;
|
|
class YACReaderTitledToolBar;
|
|
class YACReaderTitledToolBar;
|
|
|
|
class YACReaderSideBar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit YACReaderSideBar(QWidget *parent = 0);
|
|
QSize sizeHint() const;
|
|
|
|
YACReaderTreeView * foldersView;
|
|
YACReaderLibraryListWidget * selectedLibrary;
|
|
YACReaderSearchLineEdit * foldersFilter;
|
|
YACReaderTitledToolBar * librariesTitle;
|
|
YACReaderTitledToolBar * foldersTitle;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *);
|
|
|
|
};
|
|
|
|
#endif // YACREADER_SIDEBAR_H
|