代码拉取完成,页面将自动刷新
#ifndef QTMATERIALTABS_H
#define QTMATERIALTABS_H
#include "qtmaterialwidgets.h"
#include <QWidget>
#include "lib/qtmaterialtheme.h"
#include <QIcon>
class QtMaterialTabsPrivate;
class QtMaterialTab;
class QTabbar;
class QTMATERIALWIDGETS_EXPORT QtMaterialTabs : public QWidget
{
Q_OBJECT
Q_PROPERTY(int currentIndex READ currentIndex WRITE setCurrentIndex NOTIFY currentChanged)
Q_PROPERTY(int count READ count)
Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize)
Q_PROPERTY(QColor inkColor READ inkColor WRITE setInkColor)
Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor)
Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor)
public:
explicit QtMaterialTabs(QWidget *parent = nullptr);
~QtMaterialTabs() override;
void addTab(const QString &text);
void addTab(const QIcon &icon, const QString &text);
QString tabText(int index) const;
void setTabText(int index, const QString &text);
QIcon tabIcon(int index) const;
void setTabIcon(int index, const QIcon &icon);
int currentIndex() const;
void setCurrentIndex(int index);
int count() const;
const QSize &iconSize() const;
void setIconSize(const QSize &iconSize);
void setIconSize(int w, int h);
bool isHaloVisible() const;
void setHaloVisible(bool value);
Material::RippleStyle rippleStyle() const;
void setRippleStyle(Material::RippleStyle style);
bool useThemeColors() const;
void setUseThemeColors(bool value);
QColor inkColor() const;
void setInkColor(const QColor &color);
QColor backgroundColor() const;
void setBackgroundColor(const QColor &color);
QColor textColor() const;
void setTextColor(const QColor &color);
signals:
void currentChanged(int);
protected:
void setTabActive(int index, bool active = true);
void updateTabs();
const QScopedPointer<QtMaterialTabsPrivate> d_ptr;
private:
Q_DISABLE_COPY(QtMaterialTabs)
Q_DECLARE_PRIVATE(QtMaterialTabs)
};
#endif // QTMATERIALTABS_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。