Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Projet_sudoku
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jolibois Simon
Projet_sudoku
Commits
9d78a4d1
Commit
9d78a4d1
authored
Apr 9, 2021
by
Jolibois Simon
Browse files
Options
Downloads
Patches
Plain Diff
nettoyage du code et ajout de commentaires
parent
fd00fe81
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
debug/grille.o
+0
-0
0 additions, 0 deletions
debug/grille.o
debug/qrc_qml.cpp
+132
-131
132 additions, 131 deletions
debug/qrc_qml.cpp
debug/qrc_qml.o
+0
-0
0 additions, 0 deletions
debug/qrc_qml.o
debug/sudoku.exe
+0
-0
0 additions, 0 deletions
debug/sudoku.exe
main.qml
+10
-10
10 additions, 10 deletions
main.qml
with
142 additions
and
141 deletions
debug/grille.o
+
0
−
0
View file @
9d78a4d1
No preview for this file type
This diff is collapsed.
Click to expand it.
debug/qrc_qml.cpp
+
132
−
131
View file @
9d78a4d1
This diff is collapsed.
Click to expand it.
debug/qrc_qml.o
+
0
−
0
View file @
9d78a4d1
No preview for this file type
This diff is collapsed.
Click to expand it.
debug/sudoku.exe
+
0
−
0
View file @
9d78a4d1
No preview for this file type
This diff is collapsed.
Click to expand it.
main.qml
+
10
−
10
View file @
9d78a4d1
...
@@ -5,8 +5,8 @@ import QtQuick.Controls 2.15
...
@@ -5,8 +5,8 @@ import QtQuick.Controls 2.15
Window
{
Window
{
id
:
root
id
:
root
width
:
655
width
:
800
height
:
717
height
:
800
visible
:
true
visible
:
true
title
:
qsTr
(
"
Sudoku
"
)
title
:
qsTr
(
"
Sudoku
"
)
color
:
"
#e6ecfa
"
color
:
"
#e6ecfa
"
...
@@ -37,14 +37,14 @@ Window {
...
@@ -37,14 +37,14 @@ Window {
vueObjetCpt
.
save_grid
();
vueObjetCpt
.
save_grid
();
// signal de retour et confirmation visuelle de la sauvegarde - pas fonctionnelle pour l'instant
// signal de retour et confirmation visuelle de la sauvegarde - pas fonctionnelle pour l'instant
var
isSaved
=
vueObjetCpt
.
gameIsSaved
();
//
var isSaved = vueObjetCpt.gameIsSaved();
if
(
isSaved
===
1
){
//
if(isSaved===1){
saved_display
.
visible
=
true
;
//
saved_display.visible = true;
}
//
}
else
{
//
else{
saved_display
.
visible
=
true
;
//
saved_display.visible = true;
saved_display_text
.
color
=
"
red
"
;
//
saved_display_text.color = "red";
}
//
}
}
}
function
set_chiffre_actif
(
i
){
function
set_chiffre_actif
(
i
){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment