Disabled solveable menu checkbox

This commit is contained in:
Dmitriy Shishkov 2022-05-12 12:02:35 +03:00
parent 8f5f7472a8
commit e40d6f5a5e
No known key found for this signature in database
GPG Key ID: 26720CB2A9608C97
5 changed files with 122 additions and 9 deletions

View File

@ -1,8 +0,0 @@
compilation_database_dir: build
output_directory: diagrams
generate_method_arguments: none
diagrams:
config_class:
type: class
glob:
- ./*.h

29
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,29 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "make - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/build/wxMahjong",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [{"name": "LD_LIBRARY_PATH", "value": "$LD_LIBRARY_PATH:/usr/local/lib"}],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++ build active file",
"miDebuggerPath": "/usr/bin/gdb"
}
]
}

74
.vscode/settings.json vendored
View File

@ -3,5 +3,77 @@
"${default}",
"/usr/local/include/wx-3.1/",
"/usr/local/lib/wx/include/gtk3-unicode-3.1"
]
],
"files.associations": {
"hash_map": "cpp",
"*.tcc": "cpp",
"deque": "cpp",
"list": "cpp",
"string": "cpp",
"vector": "cpp",
"hash_set": "cpp",
"valarray": "cpp",
"iterator": "cpp",
"random": "cpp",
"array": "cpp",
"string_view": "cpp",
"chrono": "cpp",
"numeric": "cpp",
"streambuf": "cpp",
"*.inc": "cpp",
"any": "cpp",
"atomic": "cpp",
"bit": "cpp",
"cctype": "cpp",
"cinttypes": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"compare": "cpp",
"complex": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"csignal": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"map": "cpp",
"set": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"optional": "cpp",
"ratio": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"numbers": "cpp",
"ostream": "cpp",
"semaphore": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"thread": "cpp",
"typeinfo": "cpp",
"variant": "cpp"
}
}

19
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,19 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "make",
"args": [],
"options": {
"cwd": "${fileDirname}"
},
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Make build this project."
}
],
"version": "2.0.0"
}

View File

@ -24,6 +24,7 @@ void MainFrame::initMenu() {
menuGame->Append(IDM_New_Game, _("Начать сначала"));
menuGame->Append(IDM_Open, _("Открыть карту"));
menuGame->AppendCheckItem(IDM_Solveable, _("Генерировать решаемую карту"));
menuGame->Enable(IDM_Solveable, false); // TODO: finish solveable table generation
menuGame->AppendSeparator();
menuGame->Append(IDM_Undo, _("Отменить ход"));
menuGame->Append(IDM_Reshuffle, _("Перемешать поле"));