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
| ' Gambas class file
STATIC PUBLIC iDesign AS INTEGER '<----------------------------------' indice des Design STATIC PUBLIC iDrap AS INTEGER '<----------------------------------' indice des options STATIC PUBLIC bTrotteuse AS BOOLEAN '<-------------------------------' trotteuse ou non STATIC PUBLIC bAuto AS BOOLEAN '<----------------------------------' changement auto de fond d'horloge ou non STATIC PUBLIC sText1 AS STRING '<----------------------------------' text 1 à afficher STATIC PUBLIC sText2 AS STRING '<----------------------------------' text 2 à afficher STATIC PUBLIC hLock AS Stream '<-------------------------------------' fichier de verrouillage du démarrage STATIC PUBLIC iNumImage AS INTEGER = 19 '<---------------------------' numéro max d'images enregistrées STATIC PUBLIC bDimensions AS BOOLEAN '<----------------------------' pour le menu Dimensions STATIC PUBLIC bDoux AS BOOLEAN '<-----------------------------------' Affichage doux de la trotteuse
PRIVATE $hImage AS Image '<----------------------------------------' pour récupérer les dimensions des images enregistrées PRIVATE $hPicture AS Picture '<-------------------------------------' pour dessin des aiguilles PRIVATE $iHandLength AS NEW INTEGER[iNumImage + 1] '<---------------' longueur des aiguilles PRIVATE $cHandColor AS NEW INTEGER[iNumImage + 1] '<---------------' couleur des aiguilles PRIVATE $hConsoleTimer AS Timer '<----------------------------------' Compteur PRIVATE $iCount AS INTEGER '<----------------------------------------' $iCount = iDesign pour changement auto du fond PRIVATE $iModCompt AS INTEGER = 15 '<-------------------------------' décompte en secondes du Timer pour Auto PRIVATE $iRapport AS INTEGER '<--------------------------------------' rapport des Tics
'The drawing of the clock(s) is based on procedures provided by Hans Lehmann and Ingo Beckert. 'For the user rights please refer to: http://gambas-buch.de/dw/doku.php?id=impressum:start 'Claus Dietrich
PRIVATE SUB options()' <-------------------------------------------' actions des options du menu contextuel
DIM sLogoText AS STRING '<---------------------------------------' pour incrustation texte voir plus bas DIM W, H AS FLOAT DIM texte1 AS STRING = sText1 '<----------------------------------' choisir son texte DIM texte2 AS STRING = sText2 '<----------------------------------' choisir son texte
w = PictureBox1.W '<----------------------------------------------' PictureBox1 = aiguilles h = PictureBox1.h
SELECT CASE iDesign '<-------------------------------------------' options de couleur et de taille des fonts pour les design CASE 10 TO iNumImage '<----------------------------------------' numéro de l'image paint.Brush = paint.Color(&000000) paint.font = Font["World of Water, 13,"] CASE ELSE paint.Brush = paint.Color(&C0A74C) paint.font = Font["World of Water, 12, "] END SELECT
SELECT CASE iDrap '<----------------------------------------------' les options d'affichage CASE 0 '<----------------------------------------------------' Option 0: ?riting nada sLogoText = "" paint.DrawText(sLogoText, w / 2 - paint.TextSize(sLogoText).w / 2, h * 3 / 4, 10, 10) CASE 1 '<----------------------------------------------------' Option 1: Writing text sLogoText = texte1 paint.DrawText(sLogoText, w / 2 - paint.TextSize(sLogoText).w / 2, h * 2.5 / 4, 10, 10) sLogoText = texte2 paint.DrawText(sLogoText, w / 2 - paint.TextSize(sLogoText).w / 2, h * 2.5 / 4 + 13, 10, 10) CASE 2 '<------------------------------------------------------' Option 2: ?riting Date sLogoText = Format$(Now, "dd. mmm yyyy") paint.DrawText(sLogoText, w / 2 - paint.TextSize(sLogoText).w / 2, h * 2.8 / 4, 10, 10) CASE 3 '<----------------------------------------------------' Option 3: writing logo Paint.DrawPicture(Picture["icon:/32/gambas"], w / 2.5, h / 1.9, 50, 50) CASE 4 '<----------------------------------------------------' Option 4: writing logo and date sLogoText = Format$(Now, "dd. mmm yyyy") paint.DrawText(sLogoText, w / 2 - paint.TextSize(sLogoText).w / 2, h * 2.8 / 4, 10, 10) Paint.DrawPicture(Picture["icon:/32/gambas"], w / 2.2, h / 2, 30, 30) END SELECT
END
PRIVATE FUNCTION Zeichnen(x AS FLOAT, y AS FLOAT, hColor AS INTEGER, iLW AS INTEGER, W AS FLOAT, H AS FLOAT) AS INTEGER '<----------------------------------------------------------------' fonction pour dessiner les aiguilles
WITH Paint .Brush = paint.Color(hColor) .LineWidth = iLW .LineCap = paint.LineCapRound .MoveTo((W + 1) / 2, (H + 1) / 2) .RelLineTo(x, y) .Stroke() '<-------------------------------------------------' permet d'effacer l'image précédente END WITH
END
PRIVATE SUB PaintClock(temps AS DATE) '<----------------------------' préparation peinture des aiguilles
DIM x, y AS SINGLE '<-------------------------------------------' coordonnées du point sur cercle trigonométrique DIM iRadius AS INTEGER '<----------------------------------------' rayon du cercle parcouru par les aiguilles DIM Winkel AS FLOAT '<-------------------------------------------' angle en degrés DIM W, H AS FLOAT '<----------------------------------------------' dimensions du Formulaire DIM m AS FLOAT = 0.67 '<-----------------------------' dimensions des aiguilles réduites de ce rapport pour les heures DIM c AS FLOAT = 0.2 '<-------------------------------' dimensions des aiguilles opposées réduites de ce rapport DIM p AS FLOAT = 360 / 60 '360°/60 mn '< -----------' Tic des minutes ou des secondes correspond à l'angle de rotation en degrés DIM pk AS FLOAT = 60000 / 360 '<----------------------------' diminution des dixièmes = 166.6666666666666666 DIM monText AS STRING = Format(Str(Hour(temps)), "00") & " : " & Format(Str(Minute(temps)), "00") & " : " & Format(Str(Second(temps)), "00") DIM monText1 AS STRING = Format(Str(Second(temps)), "00") DIM fSecond AS FLOAT '<-------------------------------------------' pour récupérer les dixièmes de seconde
w = PictureBox1.W '<----------------------------------------------' Dimensions en rapport de FMain h = PictureBox1.h '<----------------------------------------------' Dimensions en rapport de FMain
$hPicture = NEW Picture(w, h, TRUE) '<---------------------------' image des aiguilles
paint.Begin($hPicture) '<---------------------------------------' début de la peinture
IF bDoux THEN fSecond = Split(Format(Time(Now), "ss,uu"))[0] * p + Split(Format(Time(Now), "ss,uu"))[1] / pk '<-- saut en milisecondes ELSE fSecond = Second(temps) * p '<-------------------------------' saut de seconde en seconde ENDIF
options()'<-------------------------------------------------------' Les options avant le reste pour ne pas couvir les aiguilles
iRadius = $iHandLength[iDesign] '<-------------------------------' Base length of the clock hands
'<----------------------------------------------------------------' Hour Hand Winkel = (Hour(temps) * 60 + Minute(temps)) / 2 - 90 '<----------' angle des heures en degrés x = (iRadius * m) * Cos(Rad(Winkel)) '<-------------------------' X-co-ordinate, conversion of degrees to radian y = (iRadius * m) * Sin(Rad(Winkel)) '<--------------------------' Y-co-ordinate, conversion of degrees to radian Zeichnen(x, y, $cHandColor[iDesign], 6, W, H) Zeichnen(x, y, Color.white, 1, W, H) '<-------------------------' liseret de couleur blanche '<----------------------------------------------------------------' partie opposée aiguille heure Winkel = (Hour(temps) * 60 + Minute(temps)) / 2 + 90 x = ((iRadius * m) * Cos(Rad(Winkel))) * c y = ((iRadius * m) * Sin(Rad(Winkel))) * c Zeichnen(x, y, $cHandColor[iDesign], 7, W, H) Zeichnen(x, y, Color.white, 1, W, H) '<-------------------------' liseret de couleur blanche '<----------------------------------------------------------------' Minute Hand Winkel = ((Minute(temps) * p - 90)) x = (iRadius - 3) * Cos(Rad(Winkel)) y = (iRadius - 3) * Sin(Rad(Winkel)) Zeichnen(x, y, $cHandColor[iDesign], 3, W, H) '<----------------------------------------------------------------' partie opposée aiguille minute Winkel = ((Minute(temps) * p + 90)) x = (iRadius - 3) * Cos(Rad(Winkel)) * c y = (iRadius - 3) * Sin(Rad(Winkel)) * c Zeichnen(x, y, $cHandColor[iDesign], 4, W, H)
IF bTrotteuse THEN '<-------------------------------------------------------------' Second Hand Winkel = (fSecond - 90) x = iRadius * Cos(Rad(Winkel)) y = iRadius * Sin(Rad(Winkel)) Zeichnen(x, y, Color.Red, 2, W, H) '<-------------------------------------------------------------' opposit part (short) of the Second Hand Winkel = (fSecond + 90) x = iRadius * Cos(Rad(Winkel)) * c y = iRadius * Sin(Rad(Winkel)) * c Zeichnen(x, y, Color.Red, 3, W, H) '<-------------------------------------------------------------' Draws a center circle marque le centre paint.Brush = paint.Color(Color.Red) paint.Arc(W / 2, H / 2, 6) ' <---------------------------------' peindre un arc au milieu de rayon paint.Fill
ELSE '<----------------------------------------------------------' affichage des secondes sans la trotteuse
Winkel = (fSecond - 90) x = iRadius * Cos(Rad(Winkel)) y = iRadius * Sin(Rad(Winkel))
SELECT CASE iDesign '<----------------------------------------' selon le Design CASE 17 '<-------------------------------------------------------' paint.Brush = paint.Color(Color.Blue) paint.Arc((x * 1.3) + w / 2, (y * 1.3) + h / 2, 6) paint.Fill CASE 18 '<-------------------------------------------------------' Paint.DrawText(monText1, x * 1.25 + w / 2 - 7, y * 1.25 + h / 2 + 7) CASE 19 '<-------------------------------------------------------' paint.DrawText(monText, w / 2 - paint.TextSize(monText).w / 2, h * 3.7 / 4, 10, 10) CASE 0 TO 16 '<-------------------------------------------------------' paint.DrawText(monText, w / 2 - paint.TextSize(monText).w / 2, h / 2 * 1.27, 10, 10) END SELECT
ENDIF
'<----------------------------------------------------------------' marque le centre d'un point paint.Brush = paint.Color($cHandColor[iDesign]) paint.Arc(W / 2, H / 2, 4) ' <------------------------------------' peindre un arc au milieu de rayon paint.Fill
paint.End '<----------------------------------------------------' fin de la peinture
PictureBox1.Picture = $hPicture '<------------------------------' Transfer painted picture to PictureBox
END
PRIVATE SUB SetDesign(i AS INTEGER) '<-------------------------------' Choix du Design du Fond d'horloge
DIM hFond AS Image
iDesign = i hFond = Image.Load("./Images/Gambas_Clock_" & Format(iDesign, "0") & ".png") hFond.Stretch(ME.W, ME.H) PictureBox2.Picture = hFond.Picture '<----------------------------' PictureBox2 = Fond d'horloge PaintClock(Now) '<----------------------------------------------' mise à jour de l'horloge Module_Settings.StoreClockSettings() '<-------------------------' sauvegarde des settings
END
PRIVATE SUB dimAiguilles() '<----------------------------------------' dimensions et couleurs des aiguilles
DIM i AS INTEGER
'<----------------------------------------------------------------' Base length of the hands FOR i = 0 TO iNumImage '<-----------------------------------------' voir la déclaration du nombre d'images SELECT CASE i '<----------------------------------------------' à modifier si ajout de design CASE 9 '<-------------------------------------------------' PictureBox1.W = $hImage.W $iHandLength[i] = PictureBox1.W / 2 - PictureBox1.W / 2 * 0.296 CASE 8 $iHandLength[i] = PictureBox1.W / 2 - PictureBox1.W / 2 * 0.0955 CASE 17, 16 $iHandLength[i] = PictureBox1.W / 2 - PictureBox1.W / 2 * 0.3 CASE ELSE $iHandLength[i] = PictureBox1.W / 2 - PictureBox1.W / 2 * 0.24 END SELECT NEXT
FOR i = 0 TO iNumImage'<------------------------------------------' Color of the hands SELECT CASE i '<----------------------------------------------' à modifier si ajout de design CASE 0 $cHandColor[i] = Color.DarkGray CASE 1, 2 $cHandColor[i] = Color.white CASE 5 $cHandColor[i] = Color.Yellow CASE 10 $cHandColor[i] = Color.Green CASE ELSE $cHandColor[i] = Color.black END SELECT NEXT
END
PRIVATE SUB dimPicture1() '<----------------------------------------' Aiguilles
PictureBox1.X = 0 PictureBox1.Y = 0 PictureBox1.W = $hImage.W PictureBox1.H = $hImage.h PictureBox1.Mode = PictureBox.Contain PictureBox1.Tooltip = ("Clique droit pour options")
END
PRIVATE SUB dimPicture2() '<----------------------------------------' Fond d'horloge
PictureBox2.X = 0 PictureBox2.Y = 0 PictureBox2.W = $hImage.W PictureBox2.H = $hImage.h PictureBox2.Mode = PictureBox.Contain
END
PUBLIC SUB _new()
TRY hLock = LOCK User.home & "/." & Application.Title & "-" & Application.Version & "-lock" '<-- blocage fichier démarrage IF ERROR THEN Message.Title = ("Attention!") Message(("Une seule instance du Progamme est possible.")) QUIT '<-------------------------------------------------------' on peut car le formulaire n'est pas encore lancé ENDIF
$hConsoleTimer = NEW Timer AS "Timer1" '<-------------------------' instanciation du compteur $hConsoleTimer.Enabled = TRUE '<----------------------------------' lancement du Timer
$hImage = Image.Load("Images/Gambas_Clock_" & Format(iDesign, "0") & ".png") '<------' pour dimensions image PictureBox2.Lower '<----------------------------------------------' pour passer le Fond sous les aiguilles dimPicture2() '<-------------------------------------------------' le Fond d'horloge dimPicture1() '<-------------------------------------------------' les aiguilles dimAiguilles() '<-------------------------------------------------' affichage des aiguilles de l'horloge dimForm() '<----------------------------------------------------' dimensions du formulaire
END
PRIVATE SUB reDim()
WITH ME .Border = bDimensions '<-------------------------------------' les bordures sont visibles .Resizable = bDimensions END WITH
END
PRIVATE SUB dimOrigine()
ME.Resize(199, 199) '<-------------------------------------------' dimensions enregistrées des images de base reFact() '<-------------------------------------------------------' traitement
END
PUBLIC SUB Form_Resize()
IF ME.W <> ME.H THEN ME.W = ME.H ME.Text = "Larg : " & ME.w & " | Haut : " & ME.h reFact() '<-------------------------------------------------------' traitement
END
PRIVATE SUB reFact() '<----------------------------------------------' traitement en cas de redimensionnement
DIM hFond AS Image
PictureBox1.X = 0 '<----------------------------------------------' aiguilles PictureBox1.Y = 0
PictureBox2.X = 0 '<----------------------------------------------' Fond d'horloge PictureBox2.Y = 0
PictureBox2.Resize(ME.w, ME.h) '<-------------------------------' Fond d'horloge PictureBox1.Resize(ME.w, ME.h) '<-------------------------------' aiguilles ' hFond = Image.Load("./Images/Gambas_Clock_" & Format(iDesign, "0") & ".png") hFond.Stretch(ME.W, ME.H) PictureBox2.Picture = hFond.Picture '<---------------------------' Fond d'horloge
dimAiguilles() '<-------------------------------------------------' affichage des aiguilles de l'horloge
END
PRIVATE SUB dimForm() '<-------------------------------------------' paramètres du formulaire
WITH ME .w = pictureBox1.w .h = pictureBox1.h .AutoResize = TRUE ' .mask = True '<----------------------------------------------' ne pas utiliser les zones transparentes sont inaccessibles .Transparent = TRUE '<----------------------------------------' tout le formulaire est transparent .Border = FALSE '<-------------------------------------------' les bordures sont invisibles .SkipTaskbar = TRUE END WITH
END
PUBLIC SUB Form_Open() '<-------------------------------------------' options de démmarrage
DIM hFond AS Image
Module_Settings.InitDefaultPath '<-------------------------------' Initializing the default path for storing settings Module_Settings.RestoreClockSettings() '<-------------------------' Restore clock design Module_Settings.RestoreFormPosition(ME) '<----------------------' Restore Form positions
IF NOT Settings.Exist("Clock" & "/Design") THEN '<----------------' affichage premier démarrage iDesign = 0 '<-------------------------------------------------' Design_0 au 1er démarrage iDrap = 0 '<-------------------------------------------------' pas d'affichage de texte au 1er démarrage ENDIF
hFond = Image.Load("./Images/Gambas_Clock_" & Format(iDesign, "0") & ".png") hFond.Stretch(ME.W, ME.H) PictureBox2.Picture = hFond.Picture '<----------------------------' Fond d'horloge
IF NOT Settings.Exist("Clock" & "/Trotteuse") THEN bTrotteuse = TRUE '<-----------------------------------------' pour avoir la trotteuse au démarrage si non enregistrée ENDIF
IF NOT Settings.Exist("Clock" & "/bDoux") THEN bDoux = FALSE ENDIF
IF NOT Settings.Exist("Clock" & "/Texte1") THEN sText1 = "Gambas" ENDIF
IF NOT Settings.Exist("Clock" & "/Texte2") THEN sText2 = "Buch" '<-------------------------------------------' par respect ENDIF
IF NOT Settings.Exist("Clock" & "/bAuto") THEN bAuto = FALSE '<----------------------------------------------' pour ne pas avoir l'automatisme au premier démarrage ENDIF
IF bDoux THEN $iRapport = 10 ELSE $iRapport = 1 ENDIF
$hConsoleTimer.Delay = 1000 / $iRapport '<-----------------------' délai de base 1 seconde ou 1000 micro-secondes $hConsoleTimer.trigger'<------------------------------------------' Updating the time display at program start
END
PUBLIC SUB PictureBox1_MouseDown()
DIM hContext AS OBJECT '<----------------------------------------' on peut les rendre Static Public DIM hContext1 AS OBJECT '<---------------------------------------' on peut les rendre Static Public DIM hContext2 AS OBJECT '<---------------------------------------' on peut les rendre Static Public DIM hContext3 AS OBJECT '<---------------------------------------' on peut les rendre Static Public DIM hMenuItem AS OBJECT '<---------------------------------------' on peut les rendre Static Public
DIM i AS INTEGER '<----------------------------------------------' variable vraiment locale
hContext = NEW Menu(ME) AS "mnuContext" '<------------------------' menu contextuel principal
hContext2 = NEW Menu(hContext) '<------------------------------' menu contextuel secondaire hContext2.Text = ("Design") hContext2.Picture = Picture["Images/Gambas_Clock_1.png"]
hContext1 = NEW Menu(hContext) '<------------------------------' menu contextuel secondaire hContext1.Text = ("Affichage") hContext1.Picture = Picture["Symbols/clock.png"]
hContext3 = NEW Menu(hContext) '<------------------------------' menu contextuel secondaire hContext3.Text = ("Autres Fonctions") hContext3.Picture = Picture["icon:/32/administrator"]
hMenuItem = NEW Menu(hContext) '<--------------------------------' ligne de séparation dans le menu hMenuItem.Text = ("")
hMenuItem = NEW Menu(hContext) AS "mnuEnreg" '<---------------' menu contextuel secondaire hMenuItem.Text = ("Enregistrer réglages" hMenuItem.Picture = Picture["icon:/32/floppy"] hMenuItem.Action = "Enreg"
hMenuItem = NEW Menu(hContext) AS "mnuHelp" '<---------------' menu contextuel secondaire hMenuItem.Text = ("Aide et À propos" hMenuItem.Picture = Picture["icon:/32/help"] hMenuItem.Action = "Aide" '<------------------------------------' Action à récupérer
hMenuItem = NEW Menu(hContext) '<-------------------------------' ligne de séparation dans menu hMenuItem.Text = ("")
hMenuItem = NEW Menu(hContext) AS "mnuExit" '<---------------' menu contextuel secondaire hMenuItem.Text = ("Quitter") hMenuItem.Picture = Picture["icon:/32/close"] hMenuItem.Action = "Exit"
hMenuItem = NEW Menu(hContext1) AS "mnuTrotteuse" '<-------------' menu niveau 3 hMenuItem.Text = ("Trotteuse") hMenuItem.Picture = Picture["icon:/32/clock"] hMenuItem.Action = "Trotteuse" '<-------------------------------' Action à récupérer IF bTrotteuse THEN hMenuItem.Checked = TRUE '<--------------------' check sur menu Trotteuse en fonction bTrotteuse
hMenuItem = NEW Menu(hContext1) AS "mnuTrotDouce" '<-------------' menu niveau 3 hMenuItem.Text = ("Façon Chronomètre" hMenuItem.Picture = Picture["icon:/32/clock"] hMenuItem.Action = "Chrono" '<-------------------------------' Action à récupérer IF bDoux THEN hMenuItem.Checked = TRUE '<-------------------------' check sur menu Trotteuse en fonction bDoux
hMenuItem = NEW Menu(hContext1) '<-------------------------------' ligne de séparation dans menu hMenuItem.Text = ("")
FOR i = 0 TO 4 '<------------------------------------------------' menu niveau 3
hMenuItem = NEW Menu(hContext1) AS "Option" '<----------------' PAS D'ACTION à cause de Last, voir option_Click hMenuItem.Tag = Format(i, "0") '<----------------------------' pour être récupéré en fonction du Click
SELECT CASE i CASE 0 hMenuItem.Text = ("Nothing ") '<-----------------------' Affichage de Rien en fonction de l'option hMenuItem.Picture = Picture["icon:/48/cancel"] CASE 1 hMenuItem.Text = ("Text ") '<---------------------------' texte du menu en fonction de l'option hMenuItem.Picture = Picture["icon:/48/font"] CASE 2 hMenuItem.Text = ("Date ") '<-------------------------' texte du menu en fonction de l'option hMenuItem.Picture = Picture["icon:/48/restaurant"] CASE 3 hMenuItem.Text = ("Logo ") '<-------------------------' Logo du menu en fonction de l'option hMenuItem.Picture = Picture["icon:/32/gambas"] CASE 4 hMenuItem.Text = ("Date et Logo ") '<-----------------' date et Logo du menu en fonction de l'option hMenuItem.Picture = Picture["icon:/32/gambas"] END SELECT
IF iDrap = i THEN hMenuItem.Checked = TRUE
NEXT
FOR i = 0 TO iNumImage'<------------------------------------------' Generate the menu items hMenuItem = NEW Menu(hContext2) AS "mnuDesign" '<-------------' PAS D'ACTION à cause de Last, voir mnuDesign_Click hMenuItem.Picture = Picture["Images/Gambas_Clock_" & Format(i, "0") & ".png"] hMenuItem.Tag = Format(i, "0") '<----------------------------' pour être récupéré lors du clique hMenuItem.Text = ("Design " & Format(i, "0")) '<-------------' texte du menu en fonction de i IF iDesign = i THEN hMenuItem.Checked = TRUE '<-------------' l'item choisi est coché NEXT
hMenuItem = NEW Menu(hContext3) AS "mnuReveil" '<--------------' menu niveau 3 hMenuItem.Text = ("Réveil" hMenuItem.Picture = Picture["icon:/32/alarm"] hMenuItem.Action = "Reveil" '<----------------------------------' Action à récupérer
hMenuItem = NEW Menu(hContext3) AS "mnuAuto" '<------------------' menu niveau 3 hMenuItem.Text = ("Design Automatique ") hMenuItem.Picture = Picture["icon:/32/car"] hMenuItem.Action = "Auto" '<------------------------------------' Action à récupérer hMenuItem.Tag = "Auto" IF bAuto THEN hMenuItem.Checked = TRUE '<-------------------------' check sur menu Auto en fonction bAuto
hMenuItem = NEW Menu(hContext3) AS "mnuRedim" '<-----------------' menu niveau 3 hMenuItem.Text = ("Rdimensionner horloge") hMenuItem.Picture = Picture["icon:/32/resize"] hMenuItem.Action = "Dimensions" '<------------------------------' Action à récupérer IF bDimensions THEN hMenuItem.Checked = TRUE '<-------------------' check sur menu Auto en fonction bAuto
hMenuItem = NEW Menu(hContext3) AS "mnuOrig" '<-------------------' menu niveau 3 hMenuItem.Text = ("Dimensions de base") hMenuItem.Picture = Picture["icon:/32/resize"] hMenuItem.Action = "Origines" '<--------------------------------' Action à récupérer
IF Mouse.Right THEN hContext.Popup '<----------------------------------------------' affichage contextuel du menu avec les items créés ici ENDIF
END
PUBLIC SUB option_Click() '<----------------------------------------' récupération de l'option choisie
iDrap = LAST.tag PaintClock(Now) '<----------------------------------------------' mise à jour de l'horloge
END
PUBLIC SUB mnuDesign_Click() '<-------------------------------------' récupération du Design choisi
SetDesign(LAST.Tag)'<---------------------------------------------' Récupération du dernier Item cliqué
END
PUBLIC SUB Action_Activate(sKey AS STRING) AS BOOLEAN '<-------------' récupération des Actions des menus
SELECT sKey CASE "Reveil" Alarm.Show '<----------------------------------------------' ouverture Alarm CASE "Auto" bAuto = NOT bAuto '<----------------------------------------' bascule du boolean $iCount = iDesign '<----------------------------------------' mise à jour compteur pour auto Module_Settings.StoreClockSettings() '<-------------------' sauvegarde des settings CASE "Aide" FHelp.Show '<----------------------------------------------' ouverture Aide (FHelp) CASE "Trotteuse" bTrotteuse = NOT bTrotteuse '<----------------------------' bascule du boolean PaintClock(Now) Module_Settings.StoreClockSettings() '<-------------------' sauvegarde des settings CASE "Chrono" bDoux = NOT bDoux $hConsoleTimer.trigger PaintClock(Now) Module_Settings.StoreClockSettings() '<-------------------' sauvegarde des settings CASE "Enreg" Module_Settings.StoreFormPosition(ME) '<-------------------' sauvegarde avant fermeture Module_Settings.StoreClockSettings() '<--------------------' sauvegarde avant fermeture CASE "Dimensions" bDimensions = NOT bDimensions reDim() '<-------------------------------------------------' changement de dimensions CASE "Origines" dimOrigine() '<-------------------------------------------' dimensions d'origine (199,199) CASE "Exit" Module_Settings.StoreFormPosition(ME) '<-------------------' sauvegarde avant fermeture Module_Settings.StoreClockSettings() '<--------------------' sauvegarde avant fermeture $hConsoleTimer.Enabled = FALSE $hConsoleTimer = NULL '<----------------------------------' destruction avant sortie IF NOT IsNull(hLock) THEN TRY UNLOCK hLock '<-------------------------------------' libération du fichier avant sortie TRY KILL User.home & "/." & Application.Title & "-" & Application.Version & "-lock" '<------ effacement du fichier ENDIF ME.Close() '<----------------------------------------------' fermeture réalisable
END SELECT
END
PUBLIC SUB PictureBox1_MouseDrag() '<-------------------------------' pour draguer
ME.x += Mouse.x - Mouse.startx '<-------------------------------' coordonnées += déplacement souris - position départ souris ME.y += Mouse.y - Mouse.starty
END
PUBLIC SUB Timer1_Timer() '<----------------------------------------' mais que fait le Timer
PaintClock(Now) '<----------------------------------------------' il repeint les aiguilles toutes les secondes
IF bAuto THEN '<--------------------------------------------------' changement d'image automatique (toutes les 15 secondes) IF Second(Now) MOD $iModCompt = 0 THEN '<----------------------' voir définition de $iModCompt SetDesign($iCount) '<-------------------------------------' changement du fond d'horloge INC $iCount '<----------------------------------------------' incrément du compteur IF $iCount > iNumImage THEN $iCount = 0 '<------------------' pour ne pas dépasser le nombre d'images ENDIF ENDIF
END
|
Par contre comment sur la 3.18 de gambas peut on avoir la trasparence sur la fenêtre proncipale?
J'ai un carré noir tout autour de l'horloge.
Merci pour la réponse.