duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

aboutdialog.h (430B)


      1 // SPDX-FileCopyrightText: 2019-2023 Connor McLaughlin <stenzek@gmail.com>
      2 // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
      3 
      4 #pragma once
      5 
      6 #include "ui_aboutdialog.h"
      7 #include <QtWidgets/QDialog>
      8 
      9 class AboutDialog final : public QDialog
     10 {
     11   Q_OBJECT
     12 
     13 public:
     14   explicit AboutDialog(QWidget* parent = nullptr);
     15   ~AboutDialog();
     16 
     17   static void showThirdPartyNotices(QWidget* parent);
     18 
     19 private:
     20   Ui::AboutDialog m_ui;
     21 
     22 };