2013-08-09 04:57:18 +00:00
|
|
|
#ifndef _LC_QUTILS_H_
|
|
|
|
#define _LC_QUTILS_H_
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2015-01-19 23:48:46 +00:00
|
|
|
QString lcFormatValue(float Value);
|
2016-06-13 01:46:50 +00:00
|
|
|
QString lcFormatValueLocalized(float Value);
|
2016-06-13 23:57:31 +00:00
|
|
|
float lcParseValueLocalized(const QString& Value);
|
2015-01-19 23:48:46 +00:00
|
|
|
|
2013-08-09 04:57:18 +00:00
|
|
|
class lcQTreeWidgetColumnStretcher : public QObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
lcQTreeWidgetColumnStretcher(QTreeWidget *treeWidget, int columnToStretch);
|
|
|
|
|
|
|
|
virtual bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
|
|
|
|
const int m_columnToStretch;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _LC_QUTILS_H_
|