Toolbox Qt
Loading...
Searching...
No Matches
widgethelper.h
1#ifndef TBQ_CORE_WIDGETHELPER_H
2#define TBQ_CORE_WIDGETHELPER_H
3
4#include <QDir>
5#include <QLabel>
6
7#include "toolboxqt/toolboxqt_global.h"
8
9namespace tbq
10{
11
12class TOOLBOXQT_EXPORT WidgetHelper
13{
14public:
15 static void labelSetPathDir(QLabel *label, const QDir &dir, bool verifyExist);
16 static void labelSetPathFile(QLabel *label, const QFileInfo &fileInfo, bool verifyExist);
17};
18
19} // namespace tbq
20
21#endif // TBQ_CORE_WIDGETHELPER_H
Class containing multiple helpful methods related to widgets.
Definition: widgethelper.h:13