chore: baseline usable version
This commit is contained in:
91
libs/qwindowkit/examples/shared/widgetframe/windowbar.h
Normal file
91
libs/qwindowkit/examples/shared/widgetframe/windowbar.h
Normal file
@@ -0,0 +1,91 @@
|
||||
// Copyright (C) 2023-2024 Stdware Collections (https://www.github.com/stdware)
|
||||
// Copyright (C) 2021-2023 wangwenx190 (Yuhang Zhao)
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#ifndef WINDOWBAR_H
|
||||
#define WINDOWBAR_H
|
||||
|
||||
#include <QFrame>
|
||||
#include <QAbstractButton>
|
||||
#include <QMenuBar>
|
||||
#include <QLabel>
|
||||
#include <QWidget>
|
||||
|
||||
namespace QWK {
|
||||
|
||||
class WindowBarPrivate;
|
||||
|
||||
class WindowBar : public QFrame {
|
||||
Q_OBJECT
|
||||
Q_DECLARE_PRIVATE(WindowBar)
|
||||
public:
|
||||
explicit WindowBar(QWidget *parent = nullptr);
|
||||
~WindowBar();
|
||||
|
||||
public:
|
||||
QMenuBar *menuBar() const;
|
||||
QLabel *titleLabel() const;
|
||||
QAbstractButton *iconButton() const;
|
||||
QAbstractButton *backButton() const;
|
||||
QAbstractButton *homeButton() const;
|
||||
QAbstractButton *favButton() const;
|
||||
QWidget *centerWidget() const;
|
||||
QAbstractButton *pinButton() const;
|
||||
QAbstractButton *minButton() const;
|
||||
QAbstractButton *maxButton() const;
|
||||
QAbstractButton *closeButton() const;
|
||||
|
||||
void setMenuBar(QMenuBar *menuBar);
|
||||
void setTitleLabel(QLabel *label);
|
||||
void setIconButton(QAbstractButton *btn);
|
||||
void setBackButton(QAbstractButton *btn);
|
||||
void setHomeButton(QAbstractButton *btn);
|
||||
void setFavButton(QAbstractButton *btn);
|
||||
void setCenterWidget(QWidget *widget);
|
||||
void setPinButton(QAbstractButton *btn);
|
||||
void setMinButton(QAbstractButton *btn);
|
||||
void setMaxButton(QAbstractButton *btn);
|
||||
void setCloseButton(QAbstractButton *btn);
|
||||
|
||||
QMenuBar *takeMenuBar();
|
||||
QLabel *takeTitleLabel();
|
||||
QAbstractButton *takeIconButton();
|
||||
QAbstractButton *takeBackButton();
|
||||
QAbstractButton *takeHomeButton();
|
||||
QAbstractButton *takeFavButton();
|
||||
QWidget *takeCenterWidget();
|
||||
QAbstractButton *takePinButton();
|
||||
QAbstractButton *takeMinButton();
|
||||
QAbstractButton *takeMaxButton();
|
||||
QAbstractButton *takeCloseButton();
|
||||
|
||||
QWidget *hostWidget() const;
|
||||
void setHostWidget(QWidget *w);
|
||||
|
||||
bool titleFollowWindow() const;
|
||||
void setTitleFollowWindow(bool value);
|
||||
|
||||
bool iconFollowWindow() const;
|
||||
void setIconFollowWindow(bool value);
|
||||
|
||||
Q_SIGNALS:
|
||||
void pinRequested(bool pin = false);
|
||||
void minimizeRequested();
|
||||
void maximizeRequested(bool max = false);
|
||||
void closeRequested();
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *obj, QEvent *event) override;
|
||||
|
||||
virtual void titleChanged(const QString &text);
|
||||
virtual void iconChanged(const QIcon &icon);
|
||||
|
||||
protected:
|
||||
WindowBar(WindowBarPrivate &d, QWidget *parent = nullptr);
|
||||
|
||||
QScopedPointer<WindowBarPrivate> d_ptr;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // WINDOWBAR_H
|
||||
Reference in New Issue
Block a user