* 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
23 lines
359 B
C++
23 lines
359 B
C++
#ifndef QT_HELP_BUTTON_H
|
|
#define QT_HELP_BUTTON_H
|
|
|
|
#include "QtIconButton.h"
|
|
|
|
class QtHelpButton
|
|
: public QtIconButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QtHelpButton(const QString& helpTitle, const QString& helpText, QWidget* parent = nullptr);
|
|
|
|
private slots:
|
|
void handleHelpPress();
|
|
|
|
private:
|
|
QString m_helpTitle;
|
|
QString m_helpText;
|
|
};
|
|
|
|
#endif // QT_HELP_BUTTON_H
|