-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdialog.h
More file actions
39 lines (31 loc) · 662 Bytes
/
dialog.h
File metadata and controls
39 lines (31 loc) · 662 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Project: CScreenie: A screenshot managing utility
* File name: dialog.h
* Description: Fullscreen Dialog header file
*
* @author Biber Copyright (C) 2010.
*
* @see The GNU Public License (GPL)
*/
#ifndef DIALOG_H
#define DIALOG_H
#include <QDialog>
namespace Ui {
class Dialog;
}
class Dialog : public QDialog
{
Q_OBJECT
public:
explicit Dialog(QWidget *parent = 0);
~Dialog();
private:
Ui::Dialog *ui;
private slots:
void on_cancelButton_clicked();
void on_clipboardButton_clicked();
void on_hddButton_clicked();
void on_customButton_clicked();
void on_publicButton_clicked();
};
#endif // DIALOG_H