Changeset 25088
- Timestamp:
- Dec 4, 2013, 4:22:41 PM (7 years ago)
- Location:
- titan/plugins/mc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/plugins/mc/mc_audioplayer.h
r24859 r25088 323 323 } 324 324 325 if(rcret == getrcconfigint("rc1", NULL)) 325 if (rcret == getrcconfigint("rcrecord", NULL)) 326 { 327 system("grab -j 100"); 328 textbox(_("Message"), _("Shooting Background done !\nSave Screenshoot Path: /tmp/screenshot.jpg"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0); 329 } 330 else if(rcret == getrcconfigint("rc1", NULL)) 326 331 { 327 332 if((status.play == 1) || (status.playspeed != 0)) -
titan/plugins/mc/mc_main.h
r25057 r25088 194 194 rcret = waitrc(mc_main, 0, 1); 195 195 if (rcret == getrcconfigint("rcexit", NULL)) break; 196 196 197 if (rcret == getrcconfigint("rcrecord", NULL)) 198 { 199 system("grab -j 100"); 200 textbox(_("Message"), _("Shooting Background done !\nSave Screenshoot Path: /tmp/screenshot.jpg"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0); 201 drawscreen(mc_main, 0, 0); 202 } 203 197 204 if(rcret == getrcconfigint("rcok", NULL)) 198 205 { -
titan/plugins/mc/mc_pictureplayer.h
r24858 r25088 114 114 } 115 115 116 if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0)) 116 if (rcret == getrcconfigint("rcrecord", NULL)) 117 { 118 system("grab -j 100"); 119 textbox(_("Message"), _("Shooting Background done !\nSave Screenshoot Path: /tmp/screenshot.jpg"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0); 120 } 121 else if(rcret == getrcconfigint("rcpause", NULL) || ((checkbox("ATEMIO520") == 1 || checkbox("ATEMIO530") == 1) && rcret == getrcconfigint("rcplay", NULL) && status.pause == 0 && status.slowspeed == 0 && status.playspeed == 0)) 117 122 { 118 123 if((status.play == 1) || (status.pause == 1)) -
titan/plugins/mc/mc_videoplayer.h
r25086 r25088 319 319 free(cmd), cmd = NULL; 320 320 } 321 322 if(rcret == getrcconfigint("rc2", NULL)) 321 322 if (rcret == getrcconfigint("rcrecord", NULL)) 323 { 324 system("grab -j 100"); 325 textbox(_("Message"), _("Shooting Background done !\nSave Screenshoot Path: /tmp/screenshot.jpg"), _("OK"), getrcconfigint("rcok", NULL), _("EXIT"), getrcconfigint("rcexit", NULL), NULL, 0, NULL, 0, 800, 200, 0, 0); 326 } 327 else if(rcret == getrcconfigint("rc2", NULL)) 323 328 { 324 329 if((status.play == 1) || (status.playspeed != 0))
Note: See TracChangeset
for help on using the changeset viewer.