File: aboutbox.h

package info (click to toggle)
wfview 2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,256 kB
  • sloc: cpp: 43,386; ansic: 3,196; sh: 32; xml: 29; makefile: 11
file content (26 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (3)
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
26
#ifndef ABOUTBOX_H
#define ABOUTBOX_H

#include <QWidget>
#include <QDesktopServices>

namespace Ui {
class aboutbox;
}

class aboutbox : public QWidget
{
    Q_OBJECT

public:
    explicit aboutbox(QWidget *parent = 0);
    ~aboutbox();

private slots:
    void on_logoBtn_clicked();

private:
    Ui::aboutbox *ui;
};

#endif // ABOUTBOX_H