CustomTitleBar.h 270 B

123456789101112131415
  1. #ifndef CUSTOMTITLEBAR_H
  2. #define CUSTOMTITLEBAR_H
  3. #include <TitleBar.h>
  4. class CustomTitleBar : public StandardTitleBar
  5. {
  6. Q_OBJECT
  7. public:
  8. CustomTitleBar(QWidget *parent = nullptr);
  9. void setBackgroundColor(QColor color);
  10. };
  11. #endif // CUSTOMTITLEBAR_H