mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Well path import improvements
* #9432 Clean file cache when all wells are deleted * Key Events: Avoid eating Delete key events Do not use a key short cut on menu actions that are always enabled. Will eat events from other actions. * #9433 Well Path Import: Keep prefix when trying to match existing well path
This commit is contained in:
@@ -53,23 +53,25 @@ public:
|
||||
QDateTime m_updateDate;
|
||||
};
|
||||
|
||||
WellData readWellData( const QString& filePath, size_t indexInFile );
|
||||
WellData readWellData( const QString& filePath );
|
||||
WellMetaData readWellMetaData( const QString& filePath, size_t indexInFile );
|
||||
WellMetaData readWellMetaData( const QString& filePath );
|
||||
size_t wellDataCount( const QString& filePath );
|
||||
WellData readWellData( const QString& filePath, size_t indexInFile );
|
||||
WellData readWellData( const QString& filePath );
|
||||
size_t wellDataCount( const QString& filePath );
|
||||
|
||||
void clear();
|
||||
void removeFilePath( const QString& filePath );
|
||||
|
||||
static WellMetaData readWellMetaData( const QString& filePath, size_t indexInFile );
|
||||
static WellMetaData readWellMetaData( const QString& filePath );
|
||||
|
||||
private:
|
||||
WellData readJsonWellData( const QString& filePath );
|
||||
WellMetaData readJsonWellMetaData( const QString& filePath );
|
||||
WellData readAsciiWellData( const QString& filePath, size_t indexInFile );
|
||||
WellMetaData readAsciiWellMetaData( const QString& filePath, size_t indexInFile );
|
||||
void readAllAsciiWellData( const QString& filePath );
|
||||
WellData readAsciiWellData( const QString& filePath, size_t indexInFile );
|
||||
void readAllAsciiWellData( const QString& filePath );
|
||||
|
||||
inline bool isJsonFile( const QString& filePath );
|
||||
static WellData readJsonWellData( const QString& filePath );
|
||||
static WellMetaData readJsonWellMetaData( const QString& filePath );
|
||||
static WellMetaData readAsciiWellMetaData( const QString& filePath, size_t indexInFile );
|
||||
static bool isJsonFile( const QString& filePath );
|
||||
|
||||
private:
|
||||
std::map<QString, std::vector<RifWellPathImporter::WellData>> m_fileNameToWellDataGroupMap;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user