File: FormAbout.h

package info (click to toggle)
puzzle-jigsaw 1.0.2%2Bgit20201007.527c529%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,048 kB
  • sloc: cpp: 875; xml: 20; makefile: 14
file content (25 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef FORMABOUT_H
#define FORMABOUT_H

#include <QDialog>

namespace Ui {
class FormAbout;
}

class FormAbout : public QDialog {
    Q_OBJECT

    public:
        explicit FormAbout(QWidget *parent = nullptr);
        ~FormAbout();

    private slots:
        void visit_web_site();
        void visit_bitbucket();

    private:
        Ui::FormAbout *ui;
};

#endif // FORMABOUT_H