* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
20 lines
351 B
C++
20 lines
351 B
C++
#ifndef QT_SEARCH_BAR_BUTTON_H
|
|
#define QT_SEARCH_BAR_BUTTON_H
|
|
|
|
#include "QtIconButton.h"
|
|
|
|
class QtSearchBarButton
|
|
: public QtSelfRefreshIconButton
|
|
{
|
|
public:
|
|
QtSearchBarButton(const FilePath& iconPath, bool small = false, QWidget* parent = nullptr);
|
|
|
|
protected:
|
|
void refresh() override;
|
|
|
|
private:
|
|
bool m_small;
|
|
};
|
|
|
|
#endif // QT_SEARCH_BAR_BUTTON_H
|