mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 07:56:40 +00:00 
			
		
		
		
	Fix folder name. Keep Qt optional. Move open dialogue from doc to tools. Rename 'load' to 'open'. Deleted wrong comment.
		
			
				
	
	
		
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			409 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			No EOL
		
	
	
		
			409 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <qdialog.h>
 | 
						|
#include <components/files/configurationmanager.hpp>
 | 
						|
 | 
						|
class DataFilesList;
 | 
						|
class QDialogButtonBox;
 | 
						|
 | 
						|
class OpenDialog : public QDialog {
 | 
						|
    Q_OBJECT
 | 
						|
public:
 | 
						|
    OpenDialog(QWidget * parent = 0);
 | 
						|
    
 | 
						|
    void getFileList(std::vector<boost::filesystem::path>& paths);
 | 
						|
private:
 | 
						|
    DataFilesList * mFileSelector;
 | 
						|
    QDialogButtonBox * buttonBox;
 | 
						|
    Files::ConfigurationManager mCfgMgr;
 | 
						|
}; |