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

Interfaces Graphiques Discussion :

résumé de plusieurs popup dans une fenêtre edit


Sujet :

Interfaces Graphiques

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut résumé de plusieurs popup dans une fenêtre edit
    Bonjour,

    J'ai plusieurs fenêtre de style popup qui sont comme ci-dessous par exemple.
    1er popup : A|B|C
    2e popup : A|B|C|D|E
    3e popup : A|B
    4e popup : A|B|C

    En fonction des choix de l'utilisateur, j'aimerais afficher l'ensemble des popup choisi dans une fenêtre "Choix".

    Si les choix dont A-A-B-C, j'aimerais afficher dans la zone edit "A A B C", en associant chaque valeur à un terme. (A=choix 1, A=choix2, B=choix3, C=choix4)
    Je sais donner une valeur à une fenêtre "edit" en fonction du popup choisi, mais pas résumer tout les popup dans une seule fenêtre.

    Est-ce possible ?

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour,

    Le plus simple serait je pense de créer une fonction prenant en paramètre d'entrée la variable handles, qui analyse les 4 popup pour former le "A A B C" final et l'afficher dans ton edit.
    Tu places alors cette fonction dans chaque callback de tes popup.

  3. #3
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    J'ai fait une fonction de ce style, mais ce que je n'arrive pas c'est à différencier les popup. Ce n'est pas possible d'avoir plusieurs fonctions resume (1 par popup?)

    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
     
     function resume(gcf, handles)
     handles = guidata(gcf);
     switch get(handles.choix_popmenu,'Value')
         case 1
             set(handles.choix_User,'String','A');
     
         case 2
            set(handles.choix_User,'String','B');
     
         case 3
            set(handles.choix_User,'String','C');
     
     end
     guidata(gcf,handles);
    Et je les appelles dans le code précédent par

  4. #4
    Invité
    Invité(e)
    Par défaut
    Je te propose une petit exemple:
    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
    function exemple
    
    uicontrol('style','popupmenu',...
        'units','normalized',...
        'position',[0 0.5 0.2 0.1],...
        'tag','choix_popmenu1',...
        'string','A|B|C',...
        'callback',@gerer_choix)
    uicontrol('style','popupmenu',...
        'units','normalized',...
        'position',[0.2 0.5 0.2 0.1],...
        'tag','choix_popmenu2',...
        'string','A|B|C|D|E',...
        'callback',@gerer_choix)
    uicontrol('style','popupmenu',...
        'units','normalized',...
        'position',[0.4 0.5 0.2 0.1],...
        'tag','choix_popmenu3',...
        'string','A|B',...
        'callback',@gerer_choix)
    uicontrol('style','popupmenu',...
        'units','normalized',...
        'position',[0.6 0.5 0.2 0.1],...
        'tag','choix_popmenu4',...
        'string','A|B|C',...
        'callback',@gerer_choix)
    uicontrol('style','edit',...
        'units','normalized',...
        'position',[0 0 1 0.5],...
        'tag','monEdit',...
        'string','')
    guidata(gcf,guihandles(gcf))
    
    function gerer_choix(obj,evnt)
    handles = guidata(gcbf);
    Texte = 'ABCDE ';
    
    Texte = Texte([get(handles.choix_popmenu1,'value') 6 get(handles.choix_popmenu2,'value') 6 get(handles.choix_popmenu3,'value') 6 get(handles.choix_popmenu4,'value')]);
    set(handles.monEdit,'string',Texte)
    
    % guidata(gcbf,handles)

  5. #5
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Merci

    je n'aurais pas trouvé la ligne Texte .

    Je vais essayer de le mettre en application avec des nombres fractions


    Merci beaucoup

  6. #6
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Je suis devant le problème auquel je m'attendais, Matlab m'associe un choix pour une valeur seulement. Ça fonctionne donc pour des lettres ou des chiffres, mais pour des fractions, il ne prend pas en compte la globalité de la fraction.
    Je pourrais laisser en lettre "ABCDE..." et mettre après A = ..., B=..., mais j'aimerais que la globalité de ma box "edit" apparaisse d'un coup.

    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
     
    function exemple
     
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0 0.5 0.2 0.1],...
        'tag','choix_popmenu1',...
        'string','14/44|21/34',...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.2 0.5 0.2 0.1],...
        'tag','choix_popmenu2',...
        'string','19/29|15/21',...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.4 0.5 0.2 0.1],...
        'tag','choix_popmenu3',...
        'string','17/44|17/21|24/30|18/30',...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.6 0.5 0.2 0.1],...
        'tag','choix_popmenu4',...
        'string','19/28|21/30',...
        'callback',@gerer_choix)
    uicontrol(...
        'style','edit',...
        'units','normalized',...
        'position',[0 0 1 0.5],...
        'tag','monEdit',...
        'string','')
    guidata(gcf,guihandles(gcf))
     
    function gerer_choix(obj,evnt)
    handles = guidata(gcbf);
    Nombre = '14/44 21/34 19/29 15/21 17/44 17/21 24/30 18/30 19/28 21/30';
     
     
    Nombre = Nombre([get(handles.choix_popmenu1,'value') 10 get(handles.choix_popmenu2,'value') 10 get(handles.choix_popmenu3,'value') 10 get(handles.choix_popmenu4,'value')]);
    set(handles.monEdit,'string',Nombre)
     
    guidata(gcbf,handles)
    Et pour chaque popup, Matlab ne continue pas la liste, il la reprend au début. J'ai essayé en distinguant chaque popup (Nombre, Nombre1, Nombre2...), mais ça ne fonctionne pas.

    Je vous remercie

  7. #7
    Invité
    Invité(e)
    Par défaut
    Pour faire ceci, il serait préférable de rentrer tes contenu 'string' sous forme de cells, ce que tu récupèrera sera aussi de cette forme, et donc le maniement en sera que plus aisé:
    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
    function exemple
    
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0 0.5 0.2 0.1],...
        'tag','choix_popmenu1',...
        'string',{'14/44','21/34'},...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.2 0.5 0.2 0.1],...
        'tag','choix_popmenu2',...
        'string',{'19/29','15/21'},...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.4 0.5 0.2 0.1],...
        'tag','choix_popmenu3',...
        'string',{'17/44','17/21','24/30','18/30'},...
        'callback',@gerer_choix)
    uicontrol(...
        'style','popupmenu',...
        'units','normalized',...
        'position',[0.6 0.5 0.2 0.1],...
        'tag','choix_popmenu4',...
        'string',{'19/28','21/30'},...
        'callback',@gerer_choix)
    uicontrol(...
        'style','edit',...
        'units','normalized',...
        'position',[0 0 1 0.5],...
        'tag','monEdit',...
        'string','')
    guidata(gcf,guihandles(gcf))
    
    function gerer_choix(obj,evnt)
    handles = guidata(gcbf);
    Nombre = '';
    for i = 1:4
       contenu = get(handles.(['choix_popmenu' num2str(i)]),'string'); % obtention du contenu {'17/44','17/21',...}
       Nombre = [Nombre contenu{get(handles.(['choix_popmenu' num2str(i)]),'value')} ' '];
    end
    set(handles.monEdit,'string',Nombre)
    
    guidata(gcbf,handles)

  8. #8
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Merci beaucoup, ça fonctionne parfaitement

  9. #9
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Je reviens vers vous à nouveau pour le même problème.
    Le programme de Winjerome fonctionne quand il n'y a que cette partie que je simule.
    Mes popmenu sont définis dans une grande fonction dans laquelle je crée tout mes choix de données, il y a donc d'autres popmenu après ceux-ci.

    Si j'intègre ce bout de programme dans mon gros code, les valeurs n'apparaissent pas dans la zone voulue.

    J'ai essayé de modifier l'ordre d'apparition de mes données sur l'interface, mais lorsque je fais ça, plus rien n'apparaît dans mon interface.

    J'ai également essayé de le faire en fonction imbriquée et Matlab m'affiche le message suivant :

    ??? Error: File: interface.m Line: 1289 Column: 1
    The function "CreateDonnees" was closed
     with an 'end', but at least one other function definition was not.
     To avoid confusion when using nested functions,
     it is illegal to use both conventions in the same file.
    Est ce que ce message signifie qu'il faut que toute les fonctions soient du style imbriquée? Est-il possible d'utiliser des guidata et des imbriquées ?

    Je vous remercie

  10. #10
    Invité
    Invité(e)
    Par défaut
    Dès que tu utilises des fonctions imbriquées, il te faut rajouter des end à la fin de toutes celles qui sont contenues dans ton fichier .m
    Si j'intègre ce bout de programme dans mon gros code, les valeurs n'apparaissent pas dans la zone voulue.
    As-tu vérifié les noms des objets que tu utilises? Ne sont-ils pas les mêmes que ton interface?

  11. #11
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Oui j'ai vérifié que le nom des variables étaient le même.

    Ma question concernant les fonctions imbriquées était plutôt
    Est ce qu'à partir du moment où on utilise un fonction imbriquée (function...end), il faut que toute les autres fonctions soient du même type ?

  12. #12
    Invité
    Invité(e)
    Par défaut
    Tout dépend de comment tu organises ton programme...
    Tu peux avoir toutes tes fonctions imbriquées dans ta principale... N'en avoir que quelques unes... Même avoir des sous-fonctions imbriquées dans d'autres déjà imbriquées...
    À quoi penses-tu exactement?

  13. #13
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    A rien en particulier , j'aimerais juste trouver la solution pour faire fonctionner correctement mon interface...

  14. #14
    Invité
    Invité(e)
    Par défaut
    Dans ce cas, montre-nous-le

  15. #15
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    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
    function panel
     
    hfig = figure(...
        'Name','Test interface',... %Nom de la fenetre
        'NumberTitle','off', ...
        'units','normalized',...
        'position',[0.05 0.07 0.9 0.85],... %taille et position de la fenetre
        'menubar','none',...
        'Toolbar','figure');
     
    uitabpanel(...
        'parent',hfig,...
        'Style','popup',... %style d'onglet
        'Units','normalized',... % normalized == % de longueur total
        'Position',[0,0.0,0.2,1],... % position et taille de la tab en %
        'FrameBackgroundColor',[0.9,0.7882,1],... % couleur de fond de la tab
        'Title',{'Telephone','test1','test2'},... % noms des tabs
        'PanelHeights',[10,15,15],... % hauteur de la fenetre de chaque popup en caractère
        'HorizontalAlignment','left',...
        'FontWeight','bold',...  %typo des titre
       'TitleBackgroundColor',[0.9 0.9 0.9],... % fond de l'onglet
        'TitleForegroundColor',[0.4294,0.8647,0.7510],... % couleur du text
        'PanelBackgroundColor',[0.7725,0.1431,0.9608],... % couleur du popup
        'SelectedItem',3,... %active la selection d'un item par defaut
        'PanelBorderType','line',...
        'CreateFcn',@CreateDonnees);
     
    uitabpanel(...
        'Parent',hfig,...
        'TabPosition','centertop',...
        'Position',[0.2,0,0.8,1],...
        'Margins',{[0,1,4,0],'pixels'},... %marge autour des 4 cotés
        'PanelBorderType','line',...
        'SelectedItem',1,...
        'Title',{'Comparo','Résultat','Design'},...
        'CreateFcn',@CreateStep);
     
    function CreateDonnees(htab,evdt,hpanel,hstatus)
    % %**************** Telephone *********************
    Telephone_fontsize=9;
    Telephone_fontweight='normal';
    Telephone_backgroundcolor=[1,1,1];
     
    Telephone_panel=uipanel(...
        'Parent',hpanel(1),...
        'Units','normalized',...
        'Position',[0.01,0.01,0.98,0.98]);
     
    handles.Telephone_popmenu=uicontrol(...
        'parent',Telephone_panel',...
        'style','popup',...
        'units','normalized',...
        'String','A|B|C|D',...
        'fontsize',Telephone_fontsize,...
        'backgroundcolor',Telephone_backgroundcolor,...
        'position',[0.01,0.4, 0.4,0.57],...
        'HorizontalAlignment','right',...
        'callback',@Telephone_Choix);
     
     
    uicontrol(...
        'parent',Telephone_panel,...
        'style','text',...
        'String','mat',...
        'units','normalized',...
        'fontsize',Telephone_fontsize,...
        'fontweight',Telephone_fontweight,...
        'Position',[0.3,0.55,0.3,0.2],...
        'HorizontalAlignment','right');
     
    handles.densite_User=uicontrol(...
        'parent',Telephone_panel,...
        'style','edit',...
        'units','normalized',...
        'String','0',...
        'fontsize',Telephone_fontsize,...
        'fontweight',Telephone_fontweight,...
        'Position',[0.65,0.55,0.3,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',Telephone_panel,...
        'style','text',...
        'String','graphisme',...
        'units','normalized',...
        'fontsize',Telephone_fontsize,...
        'fontweight',Telephone_fontweight,...
        'Position',[0.25,0.25,0.3,0.2],...
        'HorizontalAlignment','right');
     
    handles.Grah_User=uicontrol(...
        'parent',Telephone_panel,...
        'style','edit',...
        'units','normalized',...
        'String','0',...
        'fontsize',Telephone_fontsize,...
        'fontweight',Telephone_fontweight,...
        'Position',[0.65,0.25,0.2,0.2],...
        'HorizontalAlignment','right');
     
    %**************** test1 *********************
    %**********************************************
    test1_fontsize=9;
    test1_fontweight='normal';
    test1_backgroundcolor=[1,1,1];
     
    test1_panel=uipanel(...
        'Parent',hpanel(2),...
        'Units','normalized',...
        'Position',[0.01,0.01,0.98,0.98]);
     
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai1',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01,0.01,0.4,0.98],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai 2',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01,0.01, 0.4,0.8],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai 3',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01,0.01, 0.4,0.65],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai 4',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01, 0.01, 0.4,0.5],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai 5',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01, 0.01, 0.4,0.3],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test1_panel,...
        'style','text',...
        'String','essai 6',...
        'units','normalized',...
        'fontsize',test1_fontsize,...
        'fontweight',test1_fontweight,...
        'Position',[0.01,0.01, 0.4,0.15],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu1',...
        'String','12|8/3',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0.8, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu2',...
        'String','5/3|6/4',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0.64, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu3',...
        'String','8/32|17/9',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0.48,0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu4',...
        'String','19|247/30|14/87|2/28',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0.32, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu5',...
        'String','27|24|27|23',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0.16, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu6',...
        'String','14/20|1|124/224',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
     
    uicontrol(...
        'units','normalized',...
        'style','pushbutton',...
        'String','affichage',...
        'position',[0.01,0.1,0.05,0.025],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'style','edit',...
        'units','normalized',...
        'position',[0.07 0.1 0.12 0.04],...
        'tag','monEdit',...
        'string','')
     
    % %**************** test2 *********************
    test2_fontsize=9;
    test2_fontweight='normal';
    test2_backgroundcolor=[1,1,1];
    test2_panel=uipanel(...
        'Parent',hpanel(3),...
        'Units','normalized',...
        'Position',[0.01,0.01,0.98,0.98]);
     
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai1',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01,0.01,0.4,0.98],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai 2',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01,0.01, 0.4,0.8],...
        'HorizontalAlignment','right');
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai 3',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01,0.01, 0.4,0.65],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai 4',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01, 0.01, 0.4,0.5],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai 5',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01, 0.01, 0.4,0.3],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel,...
        'style','text',...
        'String','essai 6',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'fontweight',test2_fontweight,...
        'Position',[0.01,0.01, 0.4,0.15],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'String','12|142',...
        'fontsize',test2_fontsize,...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0.8, 0.4,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'String','15|18',...
        'fontsize',test2_fontsize,...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0.64, 0.4,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'String','18|17|31|28',...
        'fontsize',test2_fontsize,...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0.48,0.4,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'fontsize',test2_fontsize,...
        'String','21/29|20/26|28',...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0.32, 0.4,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'String','23/27|23/26',...
        'fontsize',test2_fontsize,...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0.16, 0.4,0.2],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'parent',test2_panel',...
        'style','popup',...
        'units','normalized',...
        'String','25|23',...
        'fontsize',test2_fontsize,...
        'backgroundcolor',test2_backgroundcolor,...
        'position',[0.6,0, 0.4,0.2],...
        'HorizontalAlignment','right');
     
     
     
     
    %*********************************BOUTONS******************************
    uicontrol(...
        'units','normalized',...
        'style','pushbutton',...
        'String','affichage2',...
        'position',[0.01,0.05,0.05,0.025],...
        'HorizontalAlignment','right');
     
    uicontrol(...
        'units','normalized',...
        'style','edit',...
        'String','0',...
        'position',[0.07,0.05,0.12,0.04]);
     
    guidata(gcf,handles(gcf));
     
    function gerer_choix(obj,evnt)
    handles = guidata(gcbf);
    Nombre = '';
    for i = 1:6
       contenu = get(handles.(['choix_popmenu' num2str(i)]),'string'); % obtention du contenu {'17/44','17/21',...}
       Nombre = [Nombre contenu{get(handles.(['choix_popmenu' num2str(i)]),'value')} '  '];
    end
    set(handles.monEdit,'string',Nombre)
     
    guidata(gcbf,handles)
    Voila mon code. J'aimerais afficher les valeurs choisi dans test1 dans "affichage"

  16. #16
    Invité
    Invité(e)
    Par défaut
    Alors ton problème vient du placement de la ligne guidata(gcf,guihandles(gcf));: il te faut la mettre à la fin du code de ta fonction principale, autrement dit juste avant la ligne function CreateDonnees(htab,evdt,hpanel,hstatus) et non à la fin de cette fonction.
    De plus si tu souhaites utiliser les handles.choix_popmenu_i, il te faudra spécifier leur Tag car c'est handles.NomDuTag.

  17. #17
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Ca ne fonctionne toujours pas.

    Le 2 moments ou je fais appel à "handles", c'est parce que j'ai des fonctions dans lesquelles je les rappelles plus tard dans le programme.

  18. #18
    Invité
    Invité(e)
    Par défaut
    Oui dont ces lignes:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    contenu = get(handles.(['choix_popmenu' num2str(i)]),'string'); % obtention du contenu {'17/44','17/21',...}
    
    Nombre = [Nombre contenu{get(handles.(['choix_popmenu' num2str(i)]),'value')} '  '];
    
    set(handles.monEdit,'string',Nombre)
    Dans ton code du post#15 ci-dessus, le Tag monEdit est bien fixé, mais pas les choix_popmenu1,2,3 et 4.

  19. #19
    Membre du Club
    Profil pro
    Inscrit en
    Mai 2011
    Messages
    177
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2011
    Messages : 177
    Points : 46
    Points
    46
    Par défaut
    Je vais essayer, mais comment ça se fait que le programme que tu m'avais donné fonctionne correctement seul, et que dans mon grand code ça ne fonctionne plus ? Pourtant rien n'a changé...

    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
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu6',...
        'String','14/20|1|124/224',...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);
    
    uicontrol(...
        'style','edit',...
        'units','normalized',...
        'position',[0.07 0.1 0.12 0.04],...
        'tag','monEdit',...
        'string','')
    J'ai bien la même structure entre les 2 uicontrol

  20. #20
    Invité
    Invité(e)
    Par défaut
    Permets moi d'en douter:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    uicontrol(...
        'parent',test1_panel',...
        'style','popup',...
        'units','normalized',...
        'tag','choix_popmenu6',...
        'String',{'14/20','1','124/224'},...
        'fontsize',test1_fontsize,...
        'backgroundcolor',test1_backgroundcolor,...
        'position',[0.6,0, 0.4,0.2],...
        'HorizontalAlignment','right',...
        'callback',@gerer_choix);

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Saisir plusieurs informations dans une fenêtre
    Par info_sara dans le forum Qt
    Réponses: 6
    Dernier message: 05/10/2012, 12h39
  2. modifier dynamiquement un ou plusieurs controls dans une fenêtre
    Par boubou38 dans le forum Windows Presentation Foundation
    Réponses: 2
    Dernier message: 13/01/2012, 11h58
  3. Réponses: 0
    Dernier message: 13/11/2010, 19h20
  4. plusieurs objets dans une fenêtre
    Par KalKul dans le forum OpenGL
    Réponses: 5
    Dernier message: 23/03/2008, 15h27
  5. Afficher un message d'erreur dans une fenêtre popup
    Par Quickeno dans le forum Langage
    Réponses: 7
    Dernier message: 08/10/2006, 02h56

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