subsurface/desktop-widgets/about.h
Michael Keller 1ce385b363 Desktop: Add Button and Link to 'Contribute' Page.
Add a button that opens the 'Contribute' page to the 'About' dialogue,
to encourage more users to start to contribute.

Requires https://github.com/subsurface/new-website/pull/36 to be
deployed to have a valid link target.

Signed-off-by: Michael Keller <mikeller@042.ch>
2024-02-04 14:50:18 -08:00

24 lines
429 B
C++

// SPDX-License-Identifier: GPL-2.0
#ifndef ABOUT_H
#define ABOUT_H
#include <QDialog>
#include "ui_about.h"
class SubsurfaceAbout : public QDialog {
Q_OBJECT
public:
explicit SubsurfaceAbout(QWidget *parent = 0);
private
slots:
void on_licenseButton_clicked();
void on_contributeButton_clicked();
void on_websiteButton_clicked();
void on_creditButton_clicked();
private:
Ui::SubsurfaceAbout ui;
};
#endif // ABOUT_H