You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
385 B
C++
19 lines
385 B
C++
#ifndef SARIBBONLINEEDIT_H
|
|
#define SARIBBONLINEEDIT_H
|
|
#include "SARibbonGlobal.h"
|
|
#include <QLineEdit>
|
|
|
|
|
|
/**
|
|
* @brief The SARibbonLineEdit class
|
|
*/
|
|
class SA_RIBBON_EXPORT SARibbonLineEdit : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SARibbonLineEdit(QWidget *parent = Q_NULLPTR);
|
|
SARibbonLineEdit(const QString &text, QWidget *parent = Q_NULLPTR);
|
|
};
|
|
|
|
#endif // SARIBBONLINEEDIT_H
|