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
|
% >>>>>>>>>>>>>>>>> Programme menu principal <<<<<<<<<<<<<<<<<<<<
% Fermeture de toute les fenetres
close all
clear all
echo off;
% >>>>>>>>>>>>>>>>> FENETRE PRINCIPAL <<<<<<<<<<<<<<<<<<<<
% Configuration de la fenetre (taille,couleur,position,titre)
screen = get(0, 'ScreenSize');
x=screen(3);
y=screen(4);
pos=[100 80 800 600];
H=figure('name','test1','menubar','none','numbertitle','off',...
'Position',pos,'color',[0.7 0.7 0.7])
% Elaboration des menus
%**************************************************************************
%bouton-poussoir pour charger image 1
BPima1 = uicontrol(gcf, ... %handle sur fenêtre graphique
'style', 'push', ... %style du bouton
'position', [116 500 100 25],... %position du bouton
'string', 'Charger image 1', ... %texte du bouton
'callback', 'open1'); %fonction, script à appeler
%ou commande a executer
%bouton-poussoir pour charger bouton 2
BPima2 = uicontrol(gcf, ... %handle sur fenêtre graphique
'style', 'push', ... %style du bouton
'position', [611 500 100 25],... %position du bouton
'string', 'Charger image 2', ... %texte du bouton
'callback', 'open2'); %fonction, script à appeler
%ou commande a executer
%**************************************************************************
%bouton-poussoir pour executer la confusion
BPconf = uicontrol(gcf, ... %handle sur fenêtre graphique
'style', 'push', ... %style du bouton
'position', [356 400 100 25],... %position du bouton
'string', 'Execute', ... %texte du bouton
'callback', 'confuse'); %fonction, script à appeler
%ou commande a executer
%**************************************************************************
TXTetap1 = uicontrol (gcf,... %handle fenêtre graphiqe
'style', 'text', ... %style du contrôle
'position', [356 530 100 15],... %position du bouton
'string', 'CONFUSE'); %texte
TXTetap1 = uicontrol (gcf,...
'style', 'text', ...
'position', [116 530 100 15],...
'string', 'ETAPE 1');
TXTetap2 = uicontrol (gcf,...
'style', 'text', ...
'position', [611 530 100 15],...
'string', 'ETAPE 2');
TXTetap3 = uicontrol (gcf,...
'style', 'text', ...
'position', [356 430 100 15],...
'string', 'ETAPE 3');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [200 300 400 15],...
'string', 'Classe 1 Classe 2 Classe 3 Classe 4 Classe 5 Classe 6');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 280 100 15],...
'string', 'Classe 1');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 260 100 15],...
'string', 'Classe 2');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 240 100 15],...
'string', 'Classe 3');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 220 100 15],...
'string', 'Classe 4');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 200 100 15],...
'string', 'Classe 5');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [100 180 100 15],...
'string', 'Classe 6');
%**************************************************************************
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [200 100 100 15],...
'string', 'truc1');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [200 80 100 15],...
'string', 'truc2');
TXT_couleur = uicontrol (gcf,...
'style', 'text', ...
'position', [200 60 100 15],...
'string', 'truc3'); |
Partager