forked from mirror/openmw-tes3mp
minor documentation changes regarding future improvements and additions
This commit is contained in:
parent
303506d24b
commit
019146756f
2 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,9 @@ namespace CSMDoc
|
||||||
State_Modified = 1,
|
State_Modified = 1,
|
||||||
State_Locked = 2,
|
State_Locked = 2,
|
||||||
State_Saving = 4,
|
State_Saving = 4,
|
||||||
State_Verifying = 8
|
State_Verifying = 8,
|
||||||
|
State_Compiling = 16, // not implemented yet
|
||||||
|
State_Searching = 32 // not implemented yet
|
||||||
};
|
};
|
||||||
|
|
||||||
std::string mName; ///< \todo replace name with ESX list
|
std::string mName; ///< \todo replace name with ESX list
|
||||||
|
|
|
@ -34,6 +34,8 @@ void CSVDoc::Operation::updateLabel (int threads)
|
||||||
|
|
||||||
CSVDoc::Operation::Operation (int type) : mType (type), mStalling (false)
|
CSVDoc::Operation::Operation (int type) : mType (type), mStalling (false)
|
||||||
{
|
{
|
||||||
|
/// \todo Add a cancel button or a pop up menu with a cancel item
|
||||||
|
|
||||||
updateLabel();
|
updateLabel();
|
||||||
|
|
||||||
/// \todo assign different progress bar colours to allow the user to distinguish easily between operation types
|
/// \todo assign different progress bar colours to allow the user to distinguish easily between operation types
|
||||||
|
|
Loading…
Reference in a new issue