Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef MAINDLG_HPP
#define MAINDLG_HPP
#include <QDialog>
class ResourceBrowserView;
class OrthancNode;
class QItemSelection;
class MainDlg : public QDialog
{
Q_OBJECT
ResourceBrowserView *browser;
QPushButton *download_btn;
QList<OrthancNode*> downloads;
public:
explicit MainDlg(QWidget *parent = 0);
private slots:
void browser_item_selected(const QItemSelection &selected, const QItemSelection &deselected);
void on_download_btn_clicked();
// QWidget interface
protected:
void closeEvent(QCloseEvent *e);
};
#endif // MAINDLG_HPP