mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 06:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef FILEDIALOG_HPP
 | 
						|
#define FILEDIALOG_HPP
 | 
						|
 | 
						|
#include <QDialog>
 | 
						|
#include <QModelIndex>
 | 
						|
 | 
						|
#ifndef Q_MOC_RUN
 | 
						|
 | 
						|
#include <boost/filesystem/path.hpp>
 | 
						|
#include "adjusterwidget.hpp"
 | 
						|
 | 
						|
#ifndef CS_QT_BOOST_FILESYSTEM_PATH_DECLARED
 | 
						|
#define CS_QT_BOOST_FILESYSTEM_PATH_DECLARED
 | 
						|
Q_DECLARE_METATYPE (boost::filesystem::path)
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 | 
						|
 | 
						|
#include "ui_filedialog.h"
 | 
						|
 | 
						|
namespace ContentSelectorView
 | 
						|
{
 | 
						|
    class ContentSelector;
 | 
						|
}
 | 
						|
 | 
						|
namespace CSVDoc
 | 
						|
{
 | 
						|
    class FileWidget;
 | 
						|
 | 
						|
    class FileDialog : public QDialog
 | 
						|
    {
 | 
						|
        Q_OBJECT
 | 
						|
 | 
						|
    private:
 | 
						|
 | 
						|
        ContentSelectorView::ContentSelector *mSelector;
 | 
						|
        Ui::FileDialog ui;
 | 
						|
        ContentAction mAction;
 | 
						|
        FileWidget *mFileWidget;
 | 
						|
        AdjusterWidget *mAdjusterWidget;
 | 
						|
        bool mDialogBuilt;
 | 
						|
 | 
						|
    public:
 | 
						|
 | 
						|
        explicit FileDialog(QWidget *parent = nullptr);
 | 
						|
        void showDialog (ContentAction action);
 | 
						|
 | 
						|
        void addFiles (const QString &path);
 | 
						|
        void setEncoding (const QString &encoding);
 | 
						|
        void clearFiles ();
 | 
						|
 | 
						|
        QString filename() const;
 | 
						|
        QStringList selectedFilePaths();
 | 
						|
 | 
						|
        void setLocalData (const boost::filesystem::path& localData);
 | 
						|
 | 
						|
    private:
 | 
						|
 | 
						|
        void buildNewFileView();
 | 
						|
        void buildOpenFileView();
 | 
						|
 | 
						|
    signals:
 | 
						|
 | 
						|
        void signalOpenFiles (const boost::filesystem::path &path);
 | 
						|
        void signalCreateNewFile (const boost::filesystem::path &path);
 | 
						|
 | 
						|
        void signalUpdateAcceptButton (bool, int);
 | 
						|
 | 
						|
    private slots:
 | 
						|
 | 
						|
        void slotNewFile();
 | 
						|
        void slotOpenFile();
 | 
						|
        void slotUpdateAcceptButton (int);
 | 
						|
        void slotUpdateAcceptButton (const QString &, bool);
 | 
						|
        void slotRejected();
 | 
						|
        void slotAddonDataChanged(const QModelIndex& topleft, const QModelIndex& bottomright);
 | 
						|
    };
 | 
						|
}
 | 
						|
#endif // FILEDIALOG_HPP
 |