Raven Core  3.0.0
P2P Digital Currency
openuridialog.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2015 The Bitcoin Core developers
2 // Copyright (c) 2017-2019 The Raven Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef RAVEN_QT_OPENURIDIALOG_H
7 #define RAVEN_QT_OPENURIDIALOG_H
8 
9 #include <QDialog>
10 
11 namespace Ui {
12  class OpenURIDialog;
13 }
14 
15 class OpenURIDialog : public QDialog
16 {
17  Q_OBJECT
18 
19 public:
20  explicit OpenURIDialog(QWidget *parent);
21  ~OpenURIDialog();
22 
23  QString getURI();
24 
25 protected Q_SLOTS:
26  void accept();
27 
28 private Q_SLOTS:
29  void on_selectFileButton_clicked();
30 
31 private:
32  Ui::OpenURIDialog *ui;
33 };
34 
35 #endif // RAVEN_QT_OPENURIDIALOG_H
Ui::OpenURIDialog * ui
Definition: openuridialog.h:32