mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
1ce385b363
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>
24 lines
429 B
C++
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
|