28 lines
		
	
	
		
			561 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			561 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <QDialog>
 | 
						|
#include <QItemSelection>
 | 
						|
 | 
						|
#include "ui/instanceview/InstanceProxyModel.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class ImportResourcePackDialog;
 | 
						|
}
 | 
						|
 | 
						|
class ImportResourcePackDialog : public QDialog {
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
   public:
 | 
						|
    explicit ImportResourcePackDialog(QWidget* parent = 0);
 | 
						|
    ~ImportResourcePackDialog();
 | 
						|
    InstanceProxyModel* proxyModel;
 | 
						|
    QString selectedInstanceKey;
 | 
						|
 | 
						|
   private:
 | 
						|
    Ui::ImportResourcePackDialog* ui;
 | 
						|
 | 
						|
   private slots:
 | 
						|
    void selectionChanged(QItemSelection, QItemSelection);
 | 
						|
    void activated(QModelIndex);
 | 
						|
};
 |