project renamed

This commit is contained in:
2017-10-04 09:27:49 +02:00
commit b90cb8db8e
52 changed files with 10927 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef CVERTICALLABEL_H
#define CVERTICALLABEL_H
#include <QLabel>
class cVerticalLabel : public QLabel
{
Q_OBJECT
public:
explicit cVerticalLabel(QWidget *parent = 0);
explicit cVerticalLabel(const QString &text, QWidget *parent=0);
signals:
protected:
void paintEvent(QPaintEvent*);
QSize sizeHint() const ;
QSize minimumSizeHint() const;
public slots:
private:
};
#endif // CVERTICALLABEL_H