IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Tkinter Python Discussion :

2 semaines avec Radiobutton et RAS/BOL


Sujet :

Tkinter Python

  1. #1
    Invité
    Invité(e)
    Par défaut 2 semaines avec Radiobutton et RAS/BOL
    Bonjour
    J'ai des difficultés à trouver la méthode de lecture de la sélection du groupe de boutons
    Je voudrais bien afficher le choix mémorisé à l'aide de "Entry", par l'intermédiaire de "def yoiioiioy(self)xradfan=" ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
     
    #!/usr/bin/env python 
    # -*- coding: utf-8 -*-
    # *
    from tkinter import *
     
    class Gammique(Tk):
            """ Ramification Gammique """
            def __init__(self):
                    Tk.__init__(self)
                    "Tableau de bord"
                    self.title('Entité Gammique :')
     
                    # Fenêtre écran_résultat
                    self.can=Canvas(self,bg='white', height=500,width=800)
                    self.can.pack(side=RIGHT)
                    # Bouton quitter
                    Button(self, text='Quitter',bg='light grey',width=15,
                                       command=self.destroy).pack(side=BOTTOM)
     
                    # Mémoire d'octave fantôme              # Utilisée pour mémoriser
                    self.ent= Entry(self)                   # l'octave antérieure. 
                    self.ent.pack()                         #
                    #self.ent.pack_forget()# Pantomime      #
                    self.ent.delete(0,END)                  #
                    self.ent.insert(END,"IOI")              #
     
                    # Groupe Octave RADIO
                    self.rad=[
                            Radiobutton(
                                    self,
                                    variable=variable,
                                    text=text,
                                    value=value,
                                    command=command,
                            )for (variable, text, value,command) in (
                                    ("yioiy","Octave +1", "ioy",self.yoiioiioy),
                                    ("yioiy","Octave  0", "ioi",self.yoiioiioy),
                                    ("yioiy","Octave -1", "yoi",self.yoiioiioy),
                            )
                    ]
                    for i in self.rad: i.pack()
                    self.rad[1].invoke()
            # __init__()
     
            # Les octaves du groupe RADIO
            def yoiioiioy(self):
                    xradfan="0"
                    self.ent.delete(0,END)
                    self.ent.insert(END,xradfan)
                    print ('*')
    # class Gammique 
    Gammique().mainloop()

  2. #2
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 287
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 287
    Points : 36 776
    Points
    36 776
    Par défaut
    Salut,

    Citation Envoyé par toumus Voir le message
    Je voudrais bien afficher le choix mémorisé à l'aide de "Entry", par l'intermédiaire de "def yoiioiioy(self)xradfan="
    Ben, lorsque le radiobutton est sélectionné, la value qu'on a passé à la construction devient "valeur" de la variable associée.
    Exemple:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    import tkinter as tk
     
    root = tk.Tk()
    variable = tk.StringVar()
    def show_variable():
        print (variable.get())
    for s in ('aaa', 'bbb', 'ccc'):
        tk.Radiobutton(text=s, value=s, variable=variable, command=show_variable).pack()
    tk.mainloop()
    Reste à corriger votre code pour que soit associée une vraie variable (et non une chaine de caractère...) et de la lire dans la commande qui est déclenchée lorsqu'on clique sur un des boutons.

    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  3. #3
    Invité
    Invité(e)
    Par défaut
    J'ai fait de mon mieux, çà marche mais il n'y a pas de sélection d'entrée, et le survol sélectionne.
    C'est OK tant que je ne clique pas dessus


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
     
    #!/usr/bin/env python 
    # -*- coding: utf-8 -*-
    # *
    from tkinter import *
     
    class Gammique(Tk):
            """ Ramification Gammique """
            def __init__(self):
                    Tk.__init__(self)
                    "Tableau de bord"
                    self.title('Entité Gammique :')
     
                    # Fenêtre écran_résultat
                    self.can=Canvas(self,bg='white', height=500,width=800)
                    self.can.pack(side=RIGHT)
                    # Bouton quitter
                    Button(self, text='Quitter',bg='light grey',width=15,
                                       command=self.destroy).pack(side=BOTTOM)
     
                    # Mémoire d'octave fantôme              # Utilisée pour mémoriser
                    self.ent= Entry(self)                   # l'octave antérieure. 
                    self.ent.pack()                         #
                    #self.ent.pack_forget()# Pantomime      #
                    self.ent.delete(0,END)                  #
                    self.ent.insert(END,"IOI")              #
     
                    etiqs=["Octave -1","Octave  0","Octave +1"]
                    valse=["YOI","IOI","IOY"]
                    variable=StringVar()
                    # Groupe Octave RADIO
                    for i in [0,1,2]:
                            self.rad=Radiobutton(self,variable=variable,text=etiqs[i],value=valse[i],command=self.yoiioiioy)
                            self.rad.pack()
            # __init__()
     
            # Les octaves du groupe RADIO
            def yoiioiioy(self):
                    xradfan=variable.get()
                    self.ent.delete(0,END)
                    self.ent.insert(END,xradfan)
                    print ('*')
    # class Gammique 
    Gammique().mainloop()
    Message d'erreur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    >>> 
    Exception in Tkinter callback
    Traceback (most recent call last):
      File "C:\Python34\lib\tkinter\__init__.py", line 1533, in __call__
        return self.func(*args)
      File "C:/Users/Vincent/Documents/developpez/develHM/racines/progamv1alpharadiobutton2.py", line 38, in yoiioiioy
        xradfan=variable.get()
    NameError: name 'variable' is not defined
    >>>

  4. #4
    Expert éminent sénior
    Homme Profil pro
    Architecte technique retraité
    Inscrit en
    Juin 2008
    Messages
    21 287
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Manche (Basse Normandie)

    Informations professionnelles :
    Activité : Architecte technique retraité
    Secteur : Industrie

    Informations forums :
    Inscription : Juin 2008
    Messages : 21 287
    Points : 36 776
    Points
    36 776
    Par défaut
    Salut,

    Lorsque vous écrivez:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
            def __init__(self):
                    ...
                    valse=["YOI","IOI","IOY"]
                    variable=StringVar()
                    ...
    La portée des variables "valse" et "variable" sera "locale" à la fonction/méthode __init__.
    Mettez "self" devant pour en faire des "attributs" de l'instance de Gammique.
    Ça devrait fonctionner "mieux".
    note: et je ne comprends pas pourquoi vous vous êtes embarqué à créer une "class": non seulement vraiment besoin mais en plus vous ne semblez pas en maîtrisez les implications.

    - W
    Architectures post-modernes.
    Python sur DVP c'est aussi des FAQs, des cours et tutoriels

  5. #5
    Invité
    Invité(e)
    Par défaut
    Je vous remercie de votre agréable assistance
    Tout compte fait, on doit me répéter souvent les mêmes choses pour les retenir.
    L'expérience en fait :^)

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
     
    #!/usr/bin/env python 
    # -*- coding: utf-8 -*-
    # *
    from tkinter import *
     
    class Gammique(Tk):
            """ Ramification Gammique """
            def __init__(self):
                    Tk.__init__(self)
                    "Tableau de bord"
                    self.title('Entité Gammique :')
     
                    # Fenêtre écran_résultat
                    self.can=Canvas(self,bg='white', height=500,width=800)
                    self.can.pack(side=RIGHT)
                    # Bouton quitter
                    Button(self, text='Quitter',bg='light grey',width=15,
                                       command=self.destroy).pack(side=BOTTOM)
     
                    # Mémoire d'octave fantôme              # Utilisée pour mémoriser
                    self.ent= Entry(self)                   # l'octave antérieure. 
                    self.ent.pack()                         #
                    #self.ent.pack_forget()# Pantomime      #
                    self.ent.delete(0,END)                  #
                    self.ent.insert(END,"IOI")              #
     
                    # Groupe Octave RADIO
                    self.etiqs=["Octave -1","Octave  0","Octave +1"]
                    self.valse=["YOI","IOI","IOY"]
                    self.variable=StringVar()
                    self.rad=[
                            Radiobutton(
                                    self,
                                    variable=variable,
                                    text=text,
                                    value=value,
                                    command=command,
                            )for (variable, text, value,command) in (
                                    (self.variable,self.etiqs[0],self.valse[0],self.yoiioiioy),
                                    (self.variable,self.etiqs[1],self.valse[1],self.yoiioiioy),
                                    (self.variable,self.etiqs[2],self.valse[2],self.yoiioiioy),
                            )
                    ]
                    for i in self.rad: i.pack()
                    self.rad[1].select()
            # __init__()
     
            # Les octaves du groupe RADIO
            def yoiioiioy(self):
                    xradfan=self.variable.get()
                    self.ent.delete(0,END)
                    self.ent.insert(END,xradfan)
                    print ('*')
    # class Gammique 
    Gammique().mainloop()

  6. #6
    Expert éminent

    Homme Profil pro
    Inscrit en
    Octobre 2008
    Messages
    4 300
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Octobre 2008
    Messages : 4 300
    Points : 6 780
    Points
    6 780
    Par défaut
    Salut,

    Ce n'est pas encore ça
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
                    self.rad=[
                            Radiobutton(
                                    self,
                                    variable=variable,
    mais ça:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
                    self.rad = [Radiobutton(self,  variable=self.variable,

  7. #7
    Invité
    Invité(e)
    Par défaut
    note: et je ne comprends pas pourquoi vous vous êtes embarqué à créer une "class": non seulement vraiment besoin mais en plus vous ne semblez pas en maîtrisez les implications.
    Bonjour. Mon unique atout avec la programmation, je suis entrain de l'exercer. Cette application a commencée en recopiant un code existant, et comme je n'ai pas bien compris l'ensemble des finesses des classes. Je me suis arrêté à ce que j'ai compris, soit ce que je voulais savoir. Comment gérer les widgets qui allaient permettre le calcul et plus encore des fonctionnalités musicales, qui sont à rappeler : Un travail accompli par nos ancêtres... (sérieux)

    Je reconnais ma grande immaturité par rapport à vous, mais aussi ma grande maturité élémentaire. Cet élémentaire qui fait avancer les débutants vers l'adaptation de la possibilité d'expression offerte par la programmation, et tout ceci malgré les implications (magique non ?) En fait les implications sont des outils de réussite.

    12 self.rad = [Radiobutton(self, variable=self.variable,
    Mais çà, je n'arrive pas à le gérer dans l'immédiat. Puis, mon code fonctionne, je ne sais pas jusqu'où

    Buttonradio OK

    code complet
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    #!/usr/bin/env python 
    # -*- coding: utf-8 -*-
    # *
    # Application gammique évolutive
    # Version 1 : Calculer les gammes
    #
    from tkinter import *
    from tkinter.font import Font
    #import winsound
     
    class Gammique(Tk):
            """ Ramification Gammique """
            def __init__(self):
                    Tk.__init__(self)
                    "Tableau de bord"
                    self.title('Entité Gammique :')
     
                    # Fenêtre écran_résultat
                    self.can=Canvas(self,bg='white', height=500,width=800)
                    self.can.pack(side=RIGHT)
                    # Tracé d'encadrement
                    # Données de l'encadré : Axes(x,y)=365(x),220(y)
                    self.can.delete(ALL)
                    self.can.create_line(10, 0, 10, 490, fill ='black')
                    self.can.create_line(790, 10, 0, 10, fill ='blue')
                    self.can.create_line(790, 490, 790, 10, fill ='black')
                    self.can.create_line(10, 490, 790, 490, fill ='blue')
     
                    # Fenêtre des utilités
                    self.cad=Frame(self,width=300,height=300)
                    self.cad.pack(side=LEFT)
                    # Bouton gamme_audio
                    #winsound.Beep(frequency, duration)
                    self.btrad=Button(self.cad,text ='Radio_inactive',width=15,bg='light blue')
                    self.btrad.pack()
                    # Bouton choix chromatique
                    self.btchr=Button(self.cad,text ='Chrome_inactif',width=15,bg='light blue')
                    self.btchr.pack()
                    # Bouton tableaux instruments
                    self.bttab=Button(self.cad,text ='Tabla_inactif',width=15,bg='light blue')
                    self.bttab.pack()
                    # Bouton accords1357
                    self.bta13=Button(self.cad,text ='A1357_inactif',width=15,bg='light blue')
                    self.bta13.pack()
                    # Bouton quitter
                    self.btquit=Button(self.cad, text='Quitter',bg='light grey',width=15,
                                       command=self.destroy)
                    self.btquit.pack(side=BOTTOM)
     
                    # Mémoire fantomatique
                    self.entfan= Entry(self)
                    self.entfan.pack()
                    #self.entfan.pack_forget()               # Pantomime
                    self.entfan.delete(0,END)
                    self.entfan.insert(END,"IOI")
     
                    # Groupe Octave RADIO
                    self.etiqs=["Octave -1","Octave  0","Octave +1"]
                    self.valse=["YOI","IOI","IOY"]
                    self.variable=StringVar()
                    self.rad=[
                            Radiobutton(
                                    self.cad,
                                    variable=variable,
                                    text=text,
                                    value=value,
                                    command=command,
                            )for (variable, text, value,command) in (
                                    (self.variable,self.etiqs[2],self.valse[2],self.yoiioiioy),
                                    (self.variable,self.etiqs[1],self.valse[1],self.yoiioiioy),
                                    (self.variable,self.etiqs[0],self.valse[0],self.yoiioiioy),
                            )
                    ]
                    for i in self.rad: i.pack()
                    self.rad[1].select()
     
                    # Les notes cursives scalpha : Graduations gérées.
                    self.sca=[
                            Scale(
                                    self,
                                    length=300,
                                    orient=HORIZONTAL,
                                    label=label,
                                    troughcolor=color,
                                    sliderlength=20,
                                    showvalue=1,
                                    from_=f,
                                    to=t,
                                    tickinterval=1,
                                    command=command,
                            ) for (label, color, f, t, command) in (
                                    ("C", "black", 0, 5, self.scanote1),
                                    ("D", "green", -1, 4, self.scanote2),
                                    ("E", "blue", -2, 3, self.scanote3),
                                    ("F", "grey", -2, 3, self.scanote4),
                                    ("G", "red", -3, 2, self.scanote5),
                                    ("A", "orange", -4, 1, self.scanote6),
                                    ("B", "yellow", -5, 0, self.scanote7),
                                    ("CDEFGAB", "ivory", -5, 5, self.scanote8),
                            )
                    ]
                    for x in self.sca: x.pack()
     
                    # Bouton gamme_naturelle
                    self.btzer=Button(self,text ='Zéro',width=25,command=self.zero)
                    self.btzer.pack()
                    # Bouton gamme_calculée
                    self.btgama=Button(self,text='gamme',width=25,command=self.gama)
                    self.btgama.pack()
            # __init__()
     
            # Les octaves du groupe RADIO
            def yoiioiioy(self):
                    xradfan=self.entfan.get()
                    xrad=self.variable.get()
                    mqdo=self.sca[0].get()
                    mqsi=self.sca[6].get()
                    yo=yoc=yod=yoe=yof=yog=yoa=yob=0
                    fyoc=fyod=fyoe=fyof=fyog=fyoa=fyob=0
                    tyoc=tyod=tyoe=tyof=tyog=tyoa=tyob=0
                    topgam=[yoc,yod,yoe,yof,yog,yoa,yob]
                    topform=[fyoc,fyod,fyoe,fyof,fyog,fyoa,fyob]
                    topto=[tyoc,tyod,tyoe,tyof,tyog,tyoa,tyob]
                    while yo < 7:
                            yi=ii=iy=yotop=topf=topt=0
                            yotop=topgam[yo]=self.sca[yo].get()
                            topf=topform[yo]=self.sca[yo].cget("from")
                            topt=topto[yo]=self.sca[yo].cget("to")
                            if xradfan == "IOI":
                                    if xrad == "YOI":
                                            if (mqdo==0)and(mqsi==0):
                                                    yi=yotop
                                            else:
                                                    yi=yotop+12
                                                    topf=topf+12
                                                    topt=topt+12
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(yi)
                                    elif xrad == "IOY":
                                            if (mqdo==0)and(mqsi==0):
                                                iy= yotop
                                            else :
                                                iy=yotop-12
                                                topf=topf-12
                                                topt=topt-12
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(iy)
                                    else:
                                            ii = yotop
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(ii)
                            if xradfan == "YOI":
                                    if xrad == "IOI":
                                            if (mqdo==0)and(mqsi==0):
                                                ii= yotop
                                            else :
                                                ii=yotop-12
                                                topf=topf-12
                                                topt=topt-12
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(ii)
                                    elif xrad == "IOY":
                                            if (mqdo==0)and(mqsi==0):
                                                iy= yotop
                                            else :
                                                iy=yotop-24
                                                topf=topf-24
                                                topt=topt-24
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(iy)
                                    else:
                                            yi=yotop
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(yi)
                            if xradfan == "IOY":
                                    if xrad == "YOI":
                                            if (mqdo==0)and(mqsi==0):
                                                yi= yotop
                                            else :
                                                yi=yotop-24
                                                topf=topf-24
                                                topt=topt-24
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(yi)
                                    elif xrad == "IOI":
                                            if (mqdo==0)and(mqsi==0):
                                                ii= yotop
                                            else :
                                                ii=yotop-12
                                                topf=topf-12
                                                topt=topt-12
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(ii)
                                    else:
                                            iy=yotop
                                            self.sca[yo].configure(from_ = topf, to = topt)
                                            self.sca[yo].set(iy)
                            yo+=1
                    # while yo
                    mqdo=self.sca[0].get()
                    mqsi=self.sca[6].get()
                    if xrad == "YOI":
                            self.sca[7].configure(from_ = 0-mqdo, to = 24-mqsi)
                    if xrad == "IOI":
                            self.sca[7].configure(from_ = -12-mqdo, to = 12-mqsi)
                    if xrad == "IOY":
                            self.sca[7].configure(from_ = -24-mqdo, to = 0-mqsi)
                    xradfan=xrad
                    self.entfan.delete(0,END)
                    self.entfan.insert(END,xradfan)
                    self.btgama.invoke()
            # yoiioiioy()
     
            # Définition des curseurs
            def scanote1(self,xc):
                    do=int(xc)
                    xsi=self.sca[6].get()
                    xre=self.sca[1].get()
                    if do<xsi:self.sca[6].set(do)
                    if do>xre+1 :self.sca[1].set(do-1)
                    # Initialise sca[7](from_)
                    xxrad=self.variable.get()
                    if xxrad == "YOI": self.sca[7].configure(from_ = 0-do, to = 24-xsi)
                    if xxrad == "IOI": self.sca[7].configure(from_ = -12-do, to = 12-xsi)
                    if xxrad == "IOY": self.sca[7].configure(from_ = -24-do, to = 0-xsi)
            # scanote1()
     
            def scanote2(self,xd):
                    re=int(xd)
                    xdo=self.sca[0].get()
                    xmi=self.sca[2].get()
                    if re<xdo-1:self.sca[0].set(re+1)
                    if re>xmi+1 :self.sca[2].set(re-1)
            # scanote2()
     
            def scanote3(self,xe):
                    mi=int(xe)
                    xre=self.sca[1].get()
                    xfa=self.sca[3].get()
                    if mi<xre-1:self.sca[1].set(mi+1)
                    if mi>xfa:self.sca[3].set(mi)
            # scanote3()
     
            def scanote4(self,xf):
                    fa=int(xf)
                    xmi=self.sca[2].get()
                    xsol=self.sca[4].get()
                    if fa<xmi:self.sca[2].set(fa)
                    if fa>xsol+1:self.sca[4].set(fa-1)
            # scanote4()
     
            def scanote5(self,xg):
                    sol=int(xg)
                    xfa=self.sca[3].get()
                    xla=self.sca[5].get()
                    if sol<xfa-1:self.sca[3].set(sol+1)
                    if sol>xla+1:self.sca[5].set(sol-1)
            # scanote5()
     
            def scanote6(self,xa):
                    la=int(xa)
                    xsol=self.sca[4].get()
                    xsi=self.sca[6].get()
                    if la<xsol-1:self.sca[4].set(la+1)
                    if la>xsi+1:self.sca[6].set(la-1)
            # scanote6()
     
            def scanote7(self,xb):
                    si=int(xb)
                    xla=self.sca[5].get()
                    xdo=self.sca[0].get()
                    if si<xla-1:self.sca[5].set(si+1)
                    if si>xdo:self.sca[0].set(si)
                    # Initialise sca[7](from_)
                    xxrad=self.variable.get()
                    if xxrad == "YOI": self.sca[7].configure(from_ = 0-xdo, to = 24-si)
                    if xxrad == "IOI": self.sca[7].configure(from_ = -12-xdo, to = 12-si)
                    if xxrad == "IOY": self.sca[7].configure(from_ = -24-xdo, to = 0-si)
            # scanote7()
     
            def scanote8(self,xh):
                    sch=int(xh)
                    f_t=0                
                    xsi=self.sca[6].get()
                    tosi=t_si=self.sca[6].cget("to")
                    if (xsi+sch > t_si):f_t=-1                        
                    xdo=self.sca[0].get()
                    fromdo=f_do=self.sca[0].cget("from")
                    todo=t_do=self.sca[0].cget("to")
                    if (xdo+sch<f_do)or(f_t==-1):
                            fromdo = xdo+sch
                            todo = t_do+sch
                            f_t = -1                        
                    xre=self.sca[1].get()
                    fromre=f_re=self.sca[1].cget("from")
                    tore=t_re=self.sca[1].cget("to")
                    if f_t==-1:
                            fromre = f_re+sch
                            tore = t_re+sch                        
                    xmi=self.sca[2].get()
                    frommi=f_mi=self.sca[2].cget("from")
                    tomi=t_mi=self.sca[2].cget("to")
                    if f_t==-1:
                            frommi = f_mi+sch
                            tomi = t_mi+sch                        
                    xfa=self.sca[3].get()
                    fromfa=f_fa=self.sca[3].cget("from")
                    tofa=t_fa=self.sca[3].cget("to")
                    if f_t==-1:
                            fromfa = f_fa+sch
                            tofa = t_fa+sch                        
                    xsol=self.sca[4].get()
                    fromsol=f_sol=self.sca[4].cget("from")
                    tosol=t_sol=self.sca[4].cget("to")
                    if f_t==-1:
                            fromsol = f_sol+sch
                            tosol = t_sol+sch                        
                    xla=self.sca[5].get()
                    fromla=f_la=self.sca[5].cget("from")
                    tola=t_la=self.sca[5].cget("to")
                    if f_t==-1:
                            fromla = f_la+sch
                            tola = t_la+sch                        
                    xsi=self.sca[6].get()
                    fromsi=f_si=self.sca[6].cget("from")
                    tosi=t_si=self.sca[6].cget("to")
                    if (xsi+sch > t_si)or(f_t==-1):
                            fromsi = f_si+sch
                            tosi = t_si+sch
                            f_t=-1                        
                    self.sca[0].configure(from_ = fromdo, to = todo)
                    self.sca[0].set(xdo+sch)                
                    self.sca[1].configure(from_ = fromre, to = tore)
                    self.sca[1].set(xre+sch)                
                    self.sca[2].configure(from_ = frommi, to = tomi)
                    self.sca[2].set(xmi+sch)                
                    self.sca[3].configure(from_ = fromfa, to = tofa)
                    self.sca[3].set(xfa+sch)                
                    self.sca[4].configure(from_ = fromsol, to = tosol)
                    self.sca[4].set(xsol+sch)                
                    self.sca[5].configure(from_ = fromla, to = tola)
                    self.sca[5].set(xla+sch)                
                    self.sca[6].configure(from_ = fromsi, to = tosi)
                    self.sca[6].set(xsi+sch)
                    self.btgama.invoke()
            # scanote8()
     
            def zero(self):
                    self.can.delete(ALL)
                    # Tracé d'encadrement
                    # Données de l'encadré : Axes(x,y)=365(x),220(y)
                    self.can.create_line(10, 0, 10, 450, fill ='black')
                    self.can.create_line(740, 10, 0, 10, fill ='blue')
                    self.can.create_line(740, 450, 740, 10, fill ='black')
                    self.can.create_line(10, 450, 740, 450, fill ='blue')
                    self.can.create_line(360, 450, 360, 10, fill ='green')
                    self.can.create_line(10, 220, 740, 220, fill ='green')
                    fnotes=[0,-1,-2,-2,-3,-4,-5]
                    tnotes=[+5,+4,+3,+3,+2,+1,0]
                    self.sca[0].configure(from_ = fnotes[0], to = tnotes[0])
                    self.sca[0].set(0)
                    self.can.create_oval(300-5,220-5,300+5,220+5,fill='black')
                    self.sca[1].configure(from_ = fnotes[1], to = tnotes[1])
                    self.sca[1].set(0)
                    self.can.create_oval(320-5,220-5,320+5,220+5,fill='green')
                    self.sca[2].configure(from_ = fnotes[2], to = tnotes[2])
                    self.sca[2].set(0)
                    self.can.create_oval(340-5,220-5,340+5,220+5,fill='blue')
                    self.sca[3].configure(from_ = fnotes[3], to = tnotes[3])
                    self.sca[3].set(0)
                    self.can.create_oval(350-5,220-5,350+5,220+5,fill='grey')
                    self.sca[4].configure(from_ = fnotes[4], to = tnotes[4])
                    self.sca[4].set(0)
                    self.can.create_oval(370-5,220-5,370+5,220+5,fill='red')
                    self.sca[5].configure(from_ = fnotes[5], to = tnotes[5])
                    self.sca[5].set(0)
                    self.can.create_oval(390-5,220-5,390+5,220+5,fill='orange')
                    self.sca[6].configure(from_ = fnotes[6], to = tnotes[6])
                    self.sca[6].set(0)
                    self.can.create_oval(410-5,220-5,410+5,220+5,fill='yellow')
                    self.sca[7].configure(from_ = -12, to = 12)
                    self.sca[7].set(0)
                    self.rad[1].invoke()                    # Remise à l'octave zéro ou "ioi"
                    self.btgama.invoke()
            # zero()
     
            def gama(self):
                    self.can.delete(ALL)
                    # Tracé d'encadrement
                    # Données de l'encadré : Axes(x,y)=365(x),220(y)
                    self.can.create_line(10, 0, 10, 450, fill ='black')
                    self.can.create_line(740, 10, 0, 10, fill ='blue')
                    self.can.create_line(740, 450, 740, 10, fill ='black')
                    self.can.create_line(10, 450, 740, 450, fill ='blue')
                    self.can.create_line(460, 450, 460, 110, fill ='green')
                    self.can.create_line(220, 220, 740, 220, fill ='green')
                    # De la table gammique aux tables diatoniques surnommées
                    gammes =[[1,1,0,1,1,1,0],[0,2,0,1,1,1,0],[2,0,0,1,1,1,0],[4,0,0,0,0,1,0],[1,0,1,1,1,1,0],[0,1,1,1,1,1,0],
                                     [1,0,3,0,0,1,0],[1,2,1,0,0,1,0],[2,2,0,0,0,1,0],[0,0,1,2,1,1,0],[1,3,0,0,0,1,0],[0,0,2,1,1,1,0],
                                     [1,2,2,0,0,0,0],[0,0,4,0,0,1,0],[1,4,0,0,0,0,0],[1,0,0,2,1,1,0],[0,1,0,2,1,1,0],[1,1,3,0,0,0,0],
                                     [0,0,0,3,1,1,0],[1,1,0,0,2,1,0],[0,2,0,0,2,1,0],[0,2,0,2,0,1,0],[2,0,0,0,2,1,0],[1,0,1,0,2,1,0],
                                     [1,0,1,2,0,1,0],[1,1,1,2,0,0,0],[2,0,0,3,0,0,0],[0,0,2,0,2,1,0],[1,2,0,2,0,0,0],[1,0,0,3,0,1,0],
                                     [1,0,0,1,2,1,0],[1,1,0,3,0,0,0],[1,1,2,1,0,0,0],[0,1,0,0,3,1,0],[0,0,1,0,3,1,0],[0,0,0,1,3,1,0],
                                     [0,0,0,2,2,1,0],[1,0,0,0,3,1,0],[0,0,2,2,0,1,0],[0,0,0,0,4,1,0],[0,0,2,3,0,0,0],[1,0,0,4,0,0,0],
                                     [0,0,0,5,0,0,0],[1,1,0,1,0,2,0],[1,1,0,1,2,0,0],[0,2,0,1,0,2,0],[0,2,0,1,2,0,0],[2,0,0,1,0,2,0],
                                     [2,0,0,1,2,0,0],[1,0,1,1,0,2,0],[1,0,1,1,2,0,0],[1,1,0,0,1,2,0],[1,1,0,0,3,0,0],[1,1,0,2,1,0,0],
                                     [1,1,2,0,1,0,0],[0,2,0,0,0,3,0],[1,0,0,2,2,0,0],[1,0,0,1,0,3,0],[1,3,0,0,1,0,0],[1,0,0,0,1,3,0],
                                     [0,0,0,3,0,2,0],[0,0,2,1,2,0,0],[1,0,0,0,0,4,0],[0,0,0,3,2,0,0],[1,1,0,0,0,3,0],[3,0,0,0,0,2,0]]
                    gamnoms =['0','-2','+2','^2','-3','-23','-34x','+34','+23x','-34','x3','°3','+34x','°34x','^3',
                                      '-4','-24','^4','°4','-5','-25','-25+','+25-','-35','-35+','+45x','+25x','°35-','+35x',
                                      '-45+','-45','x5','x45+','-25°','-35°','-45°','°45-','°5','°35+','*5','°35x','-45x',
                                      '°45x','-6','+6','-26','-26+','+26-','+26','-36','-36+','-56','-56+','+56','x46+',
                                      '-26°','-46+','-46°','x36+','-56°','°46-','°36+','*6','°46+','°6','x26-']
     
                    # Récupération des notes cursives
                    xxx=0
                    xxrad=self.variable.get()
                    if xxrad == "YOI": xxx=+120
                    if xxrad == "IOI": xxx=0
                    if xxrad == "IOY": xxx=-120
     
                    ydo=self.sca[0].get()
                    xcpos_=400-xxx
                    ycpos_=220+xxx
                    xc_=xcpos_+(ydo*10)
                    yc_=ycpos_-(ydo*10)
                    rc_=5
                    self.can.create_oval(xc_-rc_,yc_-rc_,xc_+rc_,yc_+rc_,fill='black')
                    yre=self.sca[1].get()
                    xcpos_=420-xxx
                    ycpos_=220+xxx
                    xd_=xcpos_+(yre*10)
                    yd_=ycpos_-(yre*10)
                    rd_=5
                    self.can.create_oval(xd_-rd_,yd_-rd_,xd_+rd_,yd_+rd_,fill='green')
                    ymi=self.sca[2].get()
                    xcpos_=440-xxx
                    ycpos_=220+xxx
                    xe_=xcpos_+(ymi*10)
                    ye_=ycpos_-(ymi*10)
                    re_=5
                    self.can.create_oval(xe_-re_,ye_-re_,xe_+re_,ye_+re_,fill='blue')
                    yfa=self.sca[3].get()
                    xcpos_=450-xxx
                    ycpos_=220+xxx
                    xf_=xcpos_+(yfa*10)
                    yf_=ycpos_-(yfa*10)
                    rf_=5
                    self.can.create_oval(xf_-rf_,yf_-rf_,xf_+rf_,yf_+rf_,fill='grey')
                    ysol=self.sca[4].get()
                    xcpos_=470-xxx
                    ycpos_=220+xxx
                    xg_=xcpos_+(ysol*10)
                    yg_=ycpos_-(ysol*10)
                    rg_=5
                    self.can.create_oval(xg_-rg_,yg_-rg_,xg_+rg_,yg_+rg_,fill='red')
                    yla=self.sca[5].get()
                    xcpos_=490-xxx
                    ycpos_=220+xxx
                    xa_=xcpos_+(yla*10)
                    ya_=ycpos_-(yla*10)
                    ra_=5
                    self.can.create_oval(xa_-ra_,ya_-ra_,xa_+ra_,ya_+ra_,fill='orange')
                    ysi=self.sca[6].get()
                    xcpos_=510-xxx
                    ycpos_=220+xxx
                    xb_=xcpos_+(ysi*10)
                    yb_=ycpos_-(ysi*10)
                    rb_=5
                    self.can.create_oval(xb_-rb_,yb_-rb_,xb_+rb_,yb_+rb_,fill='yellow')
     
                    # Mesure de l'intervalle tempéré
                    c1=(yre+1)-ydo
                    d2=(ymi+1)-yre
                    e3=yfa-ymi
                    f4=(ysol+1)-yfa
                    g5=(yla+1)-ysol
                    a6=(ysi+1)-yla
                    b7=i=cum_diat=ok=x=0
                    diata=[c1,d2,e3,f4,g5,a6,b7]
                    while i < 6:
                            cum_diat += diata[i]
                            i+=1            
                    # while i
                    diata[i]=5-cum_diat
     
                    # Recherche diatonique par l'itération
                    cc1=dd2=ee3=ff4=gg5=aa6=bb7=0
                    diata2=[cc1,dd2,ee3,ff4,gg5,aa6,bb7]
                    while x < 7:
                            m=x
                            y=0
                            while y < 7:
                                    diata2[y]=diata[m]
                                    y+=1
                                    m+=1
                                    if m > 6: m=0                   
                            # while
                            myx=myx2=0
                            for my in gammes:
                                    if diata2 == my:
                                            degre=x
                                            myx2=myx
                                            x=7
                                    # if diata2
                                    myx+=1
                            # for my
                            x+=1
                    # while x
                    # Ici : diata(original cursif).degre(tonique).my(gamme)
     
                    # Définition diatonique
                    # GMAJ= gammes[0]
                    gmaj = [1,1,0,1,1,1,0]    # Forme majeure simplifiée
                    # GNAT= Ordre cursif comme diata[]
                    gnat = ['C','D','E','F','G','A','B']    # Forme alphabétique
                    cnat = ['','','','','','','']
                    # Niveaux d'altérations
                    nordiese = ['','+','x','^','+^','x^','^^','+^^','x^^','^^^','+^^^','x^^^','^^^^','13(#)','14(#)','15(#)',
                                '16(#)','17(#)','18(#)','19(#)','20(#)','21(#)','22(#)','23(#)','24(#)',
                                '25(#)','26(#)','27(#)','28(#)','29(#)','30(#)','31(#)','32(#)']
                    subemol = ['','32(b)','31(b)','30(b)','29(b)','28(b)','27(b)','26(b)','25(b)','24(b)','23(b)','22(b)',
                               '21(b)','20(b)','19(b)','18(b)','17(b)','16(b)','15(b)','14(b)','13(b)',
                               '****','°***','-***','***','°**','-**','**','°*','-*','*','°','-']
                    # Configuration modale
                    gdeg = ['I','II','III','IV','V','VI','VII']
                    # Définition de l'écriture
                    font = Font(family='Liberation Serif', size=8)
                    # Définition des notes cursives
                    cursifs=[ydo,yre,ymi,yfa,ysol,yla,ysi]
                    ynat=ymod=0
                    for ycurs in cursifs:
                            if ycurs > 0 :
                                    ymod=nordiese[ycurs]
                            if ycurs < 0 :
                                    ymod=subemol[ycurs]
                            if ycurs == 0 :
                                    ymod=subemol[ycurs]
                            cnat[ynat]=ymod
                            ynat+=1
                    # for ycurs
     
                    # Une tournée produit une tonalité modale de 7 notes
                    nat2=degre
                    deg = nom = 0
                    ynote = xgdeg = 30
                    ytone = 50
                    while deg < 7 :
                            nat = deg                       # Degré tonal en question
                            cri = gimj = gmod = maj = 0
                            xdeg = 60
                            text0 = gdeg[deg]
                            self.can.create_text(xgdeg,ynote+10,text=text0,
                                                                     font='bold',fill='black')
                            while maj < 7 :                 # Tonalité modale du degré
                                    gmj = gmaj[maj]         # Forme majeure (1101110)
                                    imaj = diata2[nat]      # Forme modale (DIATA[DEGRE])
                                    ynt = cnat[nat2]        # Forme altérative des notes
                                    gnt = gnat[nat2]        # Forme tonale (CDEFGAB)
                                    ideg = gdeg[deg]
                                    cri = cri + gimj        # Tonalité cumulée
                                    gimj = imaj - gmj       # Calcul tonal PAS/PAS
                                    cmod = gmod = cri
                                    if gmod > 0 :           # Forme altérative des tonalités
                                            imod = nordiese[cmod]
                                    if gmod < 0 :
                                            imod = subemol[cmod]
                                    if gmod == 0 :
                                            imod = subemol[cmod]
                                    gmod = gmod + cri       # Transition tonale
                                    # Construction du nom de la gamme
                                    if nom == 0 :
                                            ynom = ynt
                                            gnom = gnt
                                            tnom=gnom,gamnoms[myx2]
                                            self.can.create_text(xdeg+250,ynote-10,text=ynom,font=font,fill='red')
                                            self.can.create_text(xdeg+250,ynote+10,text=tnom,
                                                                                     font='bold',fill='black')
                                    # if nom
                                    nat+=1
                                    nat2+=1
                                    if nat > 6 :
                                            nat = 0
                                    if nat2 > 6 :
                                            nat2 = 0
                                    maj = maj + 1
                                    text1=[gnt]
                                    text2=[imod,maj]
                                    self.can.create_text(xdeg,ynote-10,text=ynt,font=font,fill='red')
                                    self.can.create_text(xdeg,ynote,text=text1)
                                    self.can.create_text(xdeg,ytone,text=text2,fill='blue')
                                    xdeg+=30
                                    nom=1
                            # while maj
                            ynote+=60
                            ytone+=60
                            nat2+=1
                            if nat2 > 6 :
                                    nat2 = 0
                            deg = deg + 1
                    # while deg
            # gamma()
    # class Gammique 
    Gammique().mainloop()
    Dernière modification par Invité ; 30/08/2015 à 20h07.

  8. #8
    Invité
    Invité(e)
    Par défaut
    Vos conseils m'ont aidés à mieux cerner l'emploi des widgets, et lorsque j'en ai eu besoin vous m'avez aidés.
    C'est une démarche très "open", qui font une des raisons de la libre ouverture de l'esprit au codage de l'information.
    Comme vous, je donne grâce à ce merveilleux site. Ainsi, qu'un poil d'honneur à décoder les fameuses gammes cachées du système.
    Operation flight system octave - Opération Envol Système Octave
    Donc, pour vous remercier : le programme qui tourne autant que vous voulez en Open Source

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
     
    #!/usr/bin/env python 
    # -*- coding: utf-8 -*-
    # *
    # Application gammique évolutive
    # Opération = Envol système
    # ProgamV1epyco
    #
    from tkinter import *
    from tkinter.font import Font
    #import winsound
     
    class Gammique(Tk):
            """ Ramification Gammique """
            def __init__(self):
                    Tk.__init__(self)
                    "Tableau de bord"
                    # Titre principal
                    self.title('Entité Gammique :')
                    # Fenêtre écran_résultat
                    self.can=Canvas(self,bg='white', height=500,width=800)
                    self.can.pack(side=RIGHT)
                    # Fenêtre des utilités
                    self.cad=Frame(self,width=300,height=300)
                    self.cad.pack(side=LEFT)
                    # Bouton gamme_audio
                    #winsound.Beep(frequency, duration)
                    self.btrad=Button(self.cad,text ='Radio_inactive',width=15,bg='light blue')
                    self.btrad.pack()
                    # Bouton choix chromatique
                    self.btchr=Button(self.cad,text ='Chrome_inactif',width=15,bg='light blue')
                    self.btchr.pack()
                    # Bouton tableaux instruments
                    self.bttab=Button(self.cad,text ='Tabla_inactif',width=15,bg='light blue')
                    self.bttab.pack()
                    # Bouton accords1357
                    self.bta13=Button(self.cad,text ='A1357_inactif',width=15,bg='light blue')
                    self.bta13.pack()
                    # Bouton quitter
                    self.btquit=Button(self.cad, text='Quitter',bg='light grey',width=15,
                                       command=self.destroy)
                    self.btquit.pack(side=BOTTOM)
     
                    # Mémoire fantomatique
                    self.entfan= Entry(self)
                    self.entfan.pack()
                    self.entfan.pack_forget()               # Pantomime
                    self.entfan.delete(0,END)
                    self.entfan.insert(END,"IOI")
     
                    # Groupe Octave RADIO
                    self.etiqs=["Octave -1","Octave  0","Octave +1"]
                    self.valse=["YOI","IOI","IOY"]
                    self.variable=StringVar()
                    self.rad=[
                            Radiobutton(
                                    self.cad,
                                    variable=variable,
                                    text=text,
                                    value=value,
                                    command=command,
                            )for (variable, text, value,command) in (
                                    (self.variable,self.etiqs[2],self.valse[2],self.yoiioiioy),
                                    (self.variable,self.etiqs[1],self.valse[1],self.yoiioiioy),
                                    (self.variable,self.etiqs[0],self.valse[0],self.yoiioiioy),
                            )
                    ]
                    for i in self.rad: i.pack()
                    self.rad[1].select()
     
                    # Les notes cursives scalpha : Graduations gérées.
                    self.sca=[
                            Scale(
                                    self,
                                    length=300,
                                    orient=HORIZONTAL,
                                    label=label,
                                    troughcolor=color,
                                    sliderlength=20,
                                    showvalue=1,
                                    from_=f,
                                    to=t,
                                    tickinterval=1,
                                    command=command,
                            ) for (label, color, f, t, command) in (
                                    ("C", "black", 0, 5, self.scanote1),
                                    ("D", "green", -1, 4, self.scanote2),
                                    ("E", "blue", -2, 3, self.scanote3),
                                    ("F", "grey", -2, 3, self.scanote4),
                                    ("G", "red", -3, 2, self.scanote5),
                                    ("A", "orange", -4, 1, self.scanote6),
                                    ("B", "yellow", -5, 0, self.scanote7),
                                    ("CDEFGAB", "ivory", -12, 12, self.scanote8),
                            )
                    ]
                    for x in self.sca: x.pack()
     
                    # Bouton gamme_naturelle
                    self.btzer=Button(self,text ='Zéro',width=25,command=self.zero)
                    self.btzer.pack()
                    #self.btzer.invoke()
                    # Bouton gamme_calculée
                    self.btgama=Button(self,text='gamme',width=25,command=self.gama)
                    self.btgama.pack()
            # __init__()
     
            # Les octaves du groupe RADIO
            def yoiioiioy(self):
                    xradfan=self.entfan.get()
                    xrad=self.variable.get()
                    mqdo=self.sca[0].get()
                    mqsi=self.sca[6].get()
                    yo=yoc=yod=yoe=yof=yog=yoa=yob=0
                    fyoc=fyod=fyoe=fyof=fyog=fyoa=fyob=0
                    tyoc=tyod=tyoe=tyof=tyog=tyoa=tyob=0
                    topgam=[yoc,yod,yoe,yof,yog,yoa,yob]
                    topform=[fyoc,fyod,fyoe,fyof,fyog,fyoa,fyob]
                    topto=[tyoc,tyod,tyoe,tyof,tyog,tyoa,tyob]
                    while yo < 7:
                            yioiy=yotop=topf=topt=0
                            yotop=topgam[yo]=self.sca[yo].get()                        
                            topf=topform[yo]=self.sca[yo].cget("from")
                            topt=topto[yo]=self.sca[yo].cget("to")
                            if xradfan == "IOI":
                                    if xrad == "YOI":
                                            if (mqdo>-1)and(mqsi<1): yioiy=yotop
                                            else:
                                                    yioiy=yotop+12
                                                    topf=topf+12
                                                    topt=topt+12
                                    elif xrad == "IOY":
                                            if (mqdo>-1)and(mqsi<1): yioiy= yotop
                                            else :
                                                    yioiy=yotop-12
                                                    topf=topf-12
                                                    topt=topt-12
                                    else : yioiy = yotop
                            elif xradfan == "YOI":
                                    if xrad == "IOI":
                                            if (mqdo>-1)and(mqsi<1): yioiy= yotop
                                            else :
                                                    yioiy=yotop-12
                                                    topf=topf-12
                                                    topt=topt-12
                                    elif xrad == "IOY":
                                            if (mqdo>-1)and(mqsi<1): yioiy= yotop
                                            else :
                                                    yioiy=yotop-24
                                                    topf=topf-24
                                                    topt=topt-24
                                    else : yioiy=yotop
                            else :
                                    if xrad == "YOI":
                                            if (mqdo>-1)and(mqsi<1): yioiy= yotop
                                            else :
                                                    yioiy=yotop+24
                                                    topf=topf+24
                                                    topt=topt+24
                                    elif xrad == "IOI":
                                            if (mqdo>-1)and(mqsi<1): yioiy= yotop
                                            else :
                                                    yioiy=yotop+12
                                                    topf=topf+12
                                                    topt=topt+12
                                    else : yioiy=yotop
                            if yo == 0: mqdo1 = yioiy
                            if yo == 6: mqsi1 = yioiy
                            self.sca[yo].configure(from_ = topf, to = topt)
                            self.sca[yo].set(yioiy)
                            yo+=1
                    # while yo
                    if xrad == "YOI":
                            self.sca[7].configure(from_ = 0-mqdo1, to = 24-mqsi1)
                    if xrad == "IOI":
                            self.sca[7].configure(from_ = -12-mqdo1, to = 12-mqsi1)
                    if xrad == "IOY":
                            self.sca[7].configure(from_ = -24-mqdo1, to = 0-mqsi1)
                    xradfan=xrad
                    self.entfan.delete(0,END)
                    self.entfan.insert(END,xradfan)
                    self.btgama.invoke()
                    # print ('*')
            # yoiioiioy()
     
            # Définition des curseurs
            def scanote1(self,xc):
                    do=int(xc)
                    xsi=self.sca[6].get()
                    xre=self.sca[1].get()
                    if do<xsi:self.sca[6].set(do)
                    if do>xre+1 :self.sca[1].set(do-1)
                    # Initialise sca[7](from_)
                    xxrad=self.variable.get()
                    if xxrad == "YOI": self.sca[7].configure(from_ = 0-do, to = 24-xsi)
                    if xxrad == "IOI": self.sca[7].configure(from_ = -12-do, to = 12-xsi)
                    if xxrad == "IOY": self.sca[7].configure(from_ = -24-do, to = 0-xsi)
            # scanote1()
     
            def scanote2(self,xd):
                    re=int(xd)
                    xdo=self.sca[0].get()
                    xmi=self.sca[2].get()
                    if re<xdo-1:self.sca[0].set(re+1)
                    if re>xmi+1 :self.sca[2].set(re-1)
            # scanote2()
     
            def scanote3(self,xe):
                    mi=int(xe)
                    xre=self.sca[1].get()
                    xfa=self.sca[3].get()
                    if mi<xre-1:self.sca[1].set(mi+1)
                    if mi>xfa:self.sca[3].set(mi)
            # scanote3()
     
            def scanote4(self,xf):
                    fa=int(xf)
                    xmi=self.sca[2].get()
                    xsol=self.sca[4].get()
                    if fa<xmi:self.sca[2].set(fa)
                    if fa>xsol+1:self.sca[4].set(fa-1)
            # scanote4()
     
            def scanote5(self,xg):
                    sol=int(xg)
                    xfa=self.sca[3].get()
                    xla=self.sca[5].get()
                    if sol<xfa-1:self.sca[3].set(sol+1)
                    if sol>xla+1:self.sca[5].set(sol-1)
            # scanote5()
     
            def scanote6(self,xa):
                    la=int(xa)
                    xsol=self.sca[4].get()
                    xsi=self.sca[6].get()
                    if la<xsol-1:self.sca[4].set(la+1)
                    if la>xsi+1:self.sca[6].set(la-1)
            # scanote6()
     
            def scanote7(self,xb):
                    si=int(xb)
                    xla=self.sca[5].get()
                    xdo=self.sca[0].get()
                    if si<xla-1:self.sca[5].set(si+1)
                    if si>xdo:self.sca[0].set(si)
                    # Initialise sca[7](from_)
                    xxxrad=self.variable.get()
                    if xxxrad == "YOI": self.sca[7].configure(from_ = 0-xdo, to = 24-si)
                    if xxxrad == "IOI": self.sca[7].configure(from_ = -12-xdo, to = 12-si)
                    if xxxrad == "IOY": self.sca[7].configure(from_ = -24-xdo, to = 0-si)
            # scanote7()
     
            def scanote8(self,xh):
                    sch=int(xh)
                    f_t=0                
                    xsi=self.sca[6].get()
                    tosi=t_si=self.sca[6].cget("to")
                    if (xsi+sch > t_si):f_t=-1                        
                    xdo=self.sca[0].get()
                    fromdo=f_do=self.sca[0].cget("from")
                    todo=t_do=self.sca[0].cget("to")
                    if (xdo+sch<f_do)or(f_t==-1):
                            fromdo = f_do+sch
                            todo = t_do+sch
                            f_t = -1                        
                    xre=self.sca[1].get()
                    fromre=f_re=self.sca[1].cget("from")
                    tore=t_re=self.sca[1].cget("to")
                    if f_t==-1:
                            fromre = f_re+sch
                            tore = t_re+sch                        
                    xmi=self.sca[2].get()
                    frommi=f_mi=self.sca[2].cget("from")
                    tomi=t_mi=self.sca[2].cget("to")
                    if f_t==-1:
                            frommi = f_mi+sch
                            tomi = t_mi+sch                        
                    xfa=self.sca[3].get()
                    fromfa=f_fa=self.sca[3].cget("from")
                    tofa=t_fa=self.sca[3].cget("to")
                    if f_t==-1:
                            fromfa = f_fa+sch
                            tofa = t_fa+sch                        
                    xsol=self.sca[4].get()
                    fromsol=f_sol=self.sca[4].cget("from")
                    tosol=t_sol=self.sca[4].cget("to")
                    if f_t==-1:
                            fromsol = f_sol+sch
                            tosol = t_sol+sch                        
                    xla=self.sca[5].get()
                    fromla=f_la=self.sca[5].cget("from")
                    tola=t_la=self.sca[5].cget("to")
                    if f_t==-1:
                            fromla = f_la+sch
                            tola = t_la+sch                        
                    xsi=self.sca[6].get()
                    fromsi=f_si=self.sca[6].cget("from")
                    tosi=t_si=self.sca[6].cget("to")
                    if (xsi+sch > t_si)or(f_t==-1):
                            fromsi = f_si+sch
                            tosi = t_si+sch
                            f_t=-1                        
                    self.sca[0].configure(from_ = fromdo, to = todo)
                    self.sca[0].set(xdo+sch)                
                    self.sca[1].configure(from_ = fromre, to = tore)
                    self.sca[1].set(xre+sch)                
                    self.sca[2].configure(from_ = frommi, to = tomi)
                    self.sca[2].set(xmi+sch)                
                    self.sca[3].configure(from_ = fromfa, to = tofa)
                    self.sca[3].set(xfa+sch)                
                    self.sca[4].configure(from_ = fromsol, to = tosol)
                    self.sca[4].set(xsol+sch)                
                    self.sca[5].configure(from_ = fromla, to = tola)
                    self.sca[5].set(xla+sch)                
                    self.sca[6].configure(from_ = fromsi, to = tosi)
                    self.sca[6].set(xsi+sch)
                    self.btgama.invoke()
            # scanote8()
     
            def zero(self):
                    fnotes=[0,-1,-2,-2,-3,-4,-5]
                    tnotes=[+5,+4,+3,+3,+2,+1,0]
                    for z in range(7):
                            self.sca[z].configure(from_ = fnotes[z], to = tnotes[z])
                            self.sca[z].set(0)
                    self.sca[7].configure(from_ = -12, to = 12)
                    self.sca[7].set(0)
                    self.rad[1].invoke()                    # Remise à l'octave zéro ou "ioi"
                    self.btgama.invoke()
            # zero()
     
            def gama(self):
                    self.can.delete(ALL)
                    # Tracé d'encadrement
                    # Données de l'encadré : Axes(x,y)=365(x),220(y)
                    self.can.create_line(10, 0, 10, 450, fill ='black')
                    self.can.create_line(740, 10, 0, 10, fill ='blue')
                    self.can.create_line(740, 450, 740, 10, fill ='black')
                    self.can.create_line(10, 450, 740, 450, fill ='blue')
                    self.can.create_line(460, 450, 460, 110, fill ='green')
                    self.can.create_line(220, 220, 740, 220, fill ='green')
                    # De la table gammique aux tables diatoniques surnommées
                    gammes =[[1,1,0,1,1,1,0],[0,2,0,1,1,1,0],[2,0,0,1,1,1,0],[4,0,0,0,0,1,0],[1,0,1,1,1,1,0],[0,1,1,1,1,1,0],
                                     [1,0,3,0,0,1,0],[1,2,1,0,0,1,0],[2,2,0,0,0,1,0],[0,0,1,2,1,1,0],[1,3,0,0,0,1,0],[0,0,2,1,1,1,0],
                                     [1,2,2,0,0,0,0],[0,0,4,0,0,1,0],[1,4,0,0,0,0,0],[1,0,0,2,1,1,0],[0,1,0,2,1,1,0],[1,1,3,0,0,0,0],
                                     [0,0,0,3,1,1,0],[1,1,0,0,2,1,0],[0,2,0,0,2,1,0],[0,2,0,2,0,1,0],[2,0,0,0,2,1,0],[1,0,1,0,2,1,0],
                                     [1,0,1,2,0,1,0],[1,1,1,2,0,0,0],[2,0,0,3,0,0,0],[0,0,2,0,2,1,0],[1,2,0,2,0,0,0],[1,0,0,3,0,1,0],
                                     [1,0,0,1,2,1,0],[1,1,0,3,0,0,0],[1,1,2,1,0,0,0],[0,1,0,0,3,1,0],[0,0,1,0,3,1,0],[0,0,0,1,3,1,0],
                                     [0,0,0,2,2,1,0],[1,0,0,0,3,1,0],[0,0,2,2,0,1,0],[0,0,0,0,4,1,0],[0,0,2,3,0,0,0],[1,0,0,4,0,0,0],
                                     [0,0,0,5,0,0,0],[1,1,0,1,0,2,0],[1,1,0,1,2,0,0],[0,2,0,1,0,2,0],[0,2,0,1,2,0,0],[2,0,0,1,0,2,0],
                                     [2,0,0,1,2,0,0],[1,0,1,1,0,2,0],[1,0,1,1,2,0,0],[1,1,0,0,1,2,0],[1,1,0,0,3,0,0],[1,1,0,2,1,0,0],
                                     [1,1,2,0,1,0,0],[0,2,0,0,0,3,0],[1,0,0,2,2,0,0],[1,0,0,1,0,3,0],[1,3,0,0,1,0,0],[1,0,0,0,1,3,0],
                                     [0,0,0,3,0,2,0],[0,0,2,1,2,0,0],[1,0,0,0,0,4,0],[0,0,0,3,2,0,0],[1,1,0,0,0,3,0],[3,0,0,0,0,2,0]]
                    gamnoms =['0','-2','+2','^2','-3','-23','-34x','+34','+23x','-34','x3','°3','+34x','°34x','^3',
                                      '-4','-24','^4','°4','-5','-25','-25+','+25-','-35','-35+','+45x','+25x','°35-','+35x',
                                      '-45+','-45','x5','x45+','-25°','-35°','-45°','°45-','°5','°35+','*5','°35x','-45x',
                                      '°45x','-6','+6','-26','-26+','+26-','+26','-36','-36+','-56','-56+','+56','x46+',
                                      '-26°','-46+','-46°','x36+','-56°','°46-','°36+','*6','°46+','°6','x26-']
     
                    # Récupération des notes cursives
                    xxx=0
                    xxrad0=self.variable.get()
                    if xxrad0 == "YOI": xxx=+120
                    if xxrad0 == "IOI": xxx=0
                    if xxrad0 == "IOY": xxx=-120
     
                    ydo=self.sca[0].get()
                    xcpos_=400-xxx
                    ycpos_=220+xxx
                    xc_=xcpos_+(ydo*10)
                    yc_=ycpos_-(ydo*10)
                    rc_=5
                    self.can.create_line(xc_, 350, xc_, 40, fill ='black')
                    self.can.create_oval(xc_-rc_,yc_-rc_,xc_+rc_,yc_+rc_,fill='black')
                    yre=self.sca[1].get()
                    xcpos_=420-xxx
                    ycpos_=220+xxx
                    xd_=xcpos_+(yre*10)
                    yd_=ycpos_-(yre*10)
                    rd_=5
                    self.can.create_line(xd_, 360, xd_, 50, fill ='green')
                    self.can.create_oval(xd_-rd_,yd_-rd_,xd_+rd_,yd_+rd_,fill='green')
                    ymi=self.sca[2].get()
                    xcpos_=440-xxx
                    ycpos_=220+xxx
                    xe_=xcpos_+(ymi*10)
                    ye_=ycpos_-(ymi*10)
                    re_=5
                    self.can.create_line(xe_, 370, xe_, 60, fill ='blue')
                    self.can.create_oval(xe_-re_,ye_-re_,xe_+re_,ye_+re_,fill='blue')
                    yfa=self.sca[3].get()
                    xcpos_=450-xxx
                    ycpos_=220+xxx
                    xf_=xcpos_+(yfa*10)
                    yf_=ycpos_-(yfa*10)
                    rf_=5
                    self.can.create_line(xf_, 370, xf_, 60, fill ='grey')
                    self.can.create_oval(xf_-rf_,yf_-rf_,xf_+rf_,yf_+rf_,fill='grey')
                    ysol=self.sca[4].get()
                    xcpos_=470-xxx
                    ycpos_=220+xxx
                    xg_=xcpos_+(ysol*10)
                    yg_=ycpos_-(ysol*10)
                    rg_=5
                    self.can.create_line(xg_, 380, xg_, 70, fill ='red')
                    self.can.create_oval(xg_-rg_,yg_-rg_,xg_+rg_,yg_+rg_,fill='red')
                    yla=self.sca[5].get()
                    xcpos_=490-xxx
                    ycpos_=220+xxx
                    xa_=xcpos_+(yla*10)
                    ya_=ycpos_-(yla*10)
                    ra_=5
                    self.can.create_line(xa_, 390, xa_, 80, fill ='orange')
                    self.can.create_oval(xa_-ra_,ya_-ra_,xa_+ra_,ya_+ra_,fill='orange')
                    ysi=self.sca[6].get()
                    xcpos_=510-xxx
                    ycpos_=220+xxx
                    xb_=xcpos_+(ysi*10)
                    yb_=ycpos_-(ysi*10)
                    rb_=5
                    self.can.create_line(xb_, 400, xb_, 90, fill ='yellow')
                    self.can.create_oval(xb_-rb_,yb_-rb_,xb_+rb_,yb_+rb_,fill='yellow')
     
                    # Mesure de l'intervalle tempéré
                    c1=(yre+1)-ydo
                    d2=(ymi+1)-yre
                    e3=yfa-ymi
                    f4=(ysol+1)-yfa
                    g5=(yla+1)-ysol
                    a6=(ysi+1)-yla
                    b7=i=cum_diat=ok=x=0
                    diata=[c1,d2,e3,f4,g5,a6,b7]
                    while i < 6:
                            cum_diat += diata[i]
                            i+=1            
                    # while i
                    diata[i]=5-cum_diat
     
                    # Recherche diatonique par l'itération
                    cc1=dd2=ee3=ff4=gg5=aa6=bb7=0
                    diata2=[cc1,dd2,ee3,ff4,gg5,aa6,bb7]
                    while x < 7:
                            m=x
                            y=0
                            while y < 7:
                                    diata2[y]=diata[m]
                                    y+=1
                                    m+=1
                                    if m > 6: m=0                   
                            # while
                            myx=myx2=0
                            for my in gammes:
                                    if diata2 == my:
                                            degre=x
                                            myx2=myx
                                            x=7
                                    # if diata2
                                    myx+=1
                            # for my
                            x+=1
                    # while x
                    # Ici : diata(original cursif).degre(tonique).my(gamme)
     
                    # Définition diatonique
                    # GMAJ= gammes[0]
                    gmaj = [1,1,0,1,1,1,0]    # Forme majeure simplifiée
                    # GNAT= Ordre cursif comme diata[]
                    gnat = ['C','D','E','F','G','A','B']    # Forme alphabétique
                    cnat = ['','','','','','','']
                    # Niveaux d'altérations
                    nordiese = ['','+','x','^','+^','x^','^^','+^^','x^^','^^^','+^^^','x^^^','^^^^','13(#)','14(#)','15(#)',
                                '16(#)','17(#)','18(#)','19(#)','20(#)','21(#)','22(#)','23(#)','24(#)',
                                '25(#)','26(#)','27(#)','28(#)','29(#)','30(#)','31(#)','32(#)']
                    subemol = ['','32(b)','31(b)','30(b)','29(b)','28(b)','27(b)','26(b)','25(b)','24(b)','23(b)','22(b)',
                               '21(b)','20(b)','19(b)','18(b)','17(b)','16(b)','15(b)','14(b)','13(b)',
                               '****','°***','-***','***','°**','-**','**','°*','-*','*','°','-']
                    # Configuration modale
                    gdeg = ['I','II','III','IV','V','VI','VII']
                    # Définition de l'écriture
                    font = Font(family='Liberation Serif', size=8)
                    # Définition des notes cursives
                    cursifs=[ydo,yre,ymi,yfa,ysol,yla,ysi]
                    ynat=ymod=0
                    for ycurs in cursifs:
                            if ycurs > 0 :
                                    ymod=nordiese[ycurs]
                            if ycurs < 0 :
                                    ymod=subemol[ycurs]
                            if ycurs == 0 :
                                    ymod=subemol[ycurs]
                            cnat[ynat]=ymod
                            ynat+=1
                    # for ycurs
     
                    # Une tournée produit une tonalité modale de 7 notes
                    nat2=degre
                    deg = nom = 0
                    ynote = xgdeg = 30
                    ytone = 50
                    while deg < 7 :
                            nat = deg                       # Degré tonal en question
                            cri = gimj = gmod = maj = 0
                            xdeg = 60
                            text0 = gdeg[deg]
                            self.can.create_text(xgdeg,ynote+10,text=text0,
                                                                     font='bold',fill='black')
                            while maj < 7 :                 # Tonalité modale du degré
                                    gmj = gmaj[maj]         # Forme majeure (1101110)
                                    imaj = diata2[nat]      # Forme modale (DIATA[DEGRE])
                                    ynt = cnat[nat2]        # Forme altérative des notes
                                    gnt = gnat[nat2]        # Forme tonale (CDEFGAB)
                                    ideg = gdeg[deg]
                                    cri = cri + gimj        # Tonalité cumulée
                                    gimj = imaj - gmj       # Calcul tonal PAS/PAS
                                    cmod = gmod = cri
                                    if gmod > 0 :           # Forme altérative des tonalités
                                            imod = nordiese[cmod]
                                    if gmod < 0 :
                                            imod = subemol[cmod]
                                    if gmod == 0 :
                                            imod = subemol[cmod]
                                    gmod = gmod + cri       # Transition tonale
                                    # Construction du nom de la gamme
                                    if nom == 0 :
                                            ynom = ynt
                                            gnom = gnt
                                            tnom=gnom,gamnoms[myx2]
                                            self.can.create_text(xdeg+240,ynote-13,text=ynom,font=font,fill='red')
                                            self.can.create_text(xdeg+250,ynote,text=tnom,
                                                                                     font='bold',fill='black')
                                    # if nom
                                    nat+=1
                                    nat2+=1
                                    if nat > 6 :
                                            nat = 0
                                    if nat2 > 6 :
                                            nat2 = 0
                                    maj = maj + 1
                                    text1=[gnt]
                                    text2=[imod,maj]
                                    self.can.create_text(xdeg,ynote-12,text=ynt,font=font,fill='red')
                                    self.can.create_text(xdeg,ynote,text=text1)
                                    self.can.create_text(xdeg,ytone,text=text2,fill='blue')
                                    xdeg+=30
                                    nom=1
                            # while maj
                            ynote+=60
                            ytone+=60
                            nat2+=1
                            if nat2 > 6 :
                                    nat2 = 0
                            deg = deg + 1
                    # while deg
            # gamma()
    # class Gammique 
    Gammique().mainloop()
    Merci encore (bis)
    Dernière modification par Invité ; 06/09/2015 à 19h15.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 1
    Dernier message: 04/03/2008, 08h34
  2. Problème avec RadioButton dans une DataList
    Par luimême dans le forum ASP.NET
    Réponses: 1
    Dernier message: 13/11/2007, 10h54
  3. petit problème avec RadioButtons et event :-(
    Par Thundereagle dans le forum AWT/Swing
    Réponses: 4
    Dernier message: 29/09/2007, 12h39
  4. Changement du jour de la semaine avec java.util.GregorianCalendar
    Par Alexandre T dans le forum Collection et Stream
    Réponses: 4
    Dernier message: 10/09/2007, 10h01
  5. controle listbox avec radiobuttons
    Par gbardy dans le forum MFC
    Réponses: 2
    Dernier message: 28/08/2006, 14h27

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo