Files
RedBear-OS/local/recipes/qt/qtbase/source/examples/widgets/gallery/widgetgallery.h
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

44 lines
970 B
C++

// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef WIDGETGALLERY_H
#define WIDGETGALLERY_H
#include <QDialog>
QT_BEGIN_NAMESPACE
class QGroupBox;
class QProgressBar;
class QTabWidget;
class QTextBrowser;
class QToolBox;
QT_END_NAMESPACE
class WidgetGallery : public QDialog
{
Q_OBJECT
public:
explicit WidgetGallery(QWidget *parent = nullptr);
void setVisible(bool visible) override;
private slots:
void changeStyle(const QString &styleName);
void advanceProgressBar();
void helpOnCurrentWidget();
void updateSystemInfo();
private:
static QGroupBox *createButtonsGroupBox();
static QTabWidget *createItemViewTabWidget();
static QGroupBox *createSimpleInputWidgetsGroupBox();
QToolBox *createTextToolBox();
QProgressBar *createProgressBar();
QProgressBar *progressBar;
QTextBrowser *systemInfoTextBrowser{};
};
#endif // WIDGETGALLERY_H