mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 13:34:44 -04:00
A?adido el uso 7z.dll en lugar de 7z.exe en el visor
This commit is contained in:
34
custom_widgets/yacreader_sidebar.h
Normal file
34
custom_widgets/yacreader_sidebar.h
Normal file
@ -0,0 +1,34 @@
|
||||
#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
|
Reference in New Issue
Block a user