Changeset 16898


Ignore:
Timestamp:
06/29/12 20:49:04 (12 years ago)
Author:
nit
Message:

[titan] update tmc add new plugin filemamnager

Location:
titan/plugins
Files:
3 added
15 edited

Legend:

Unmodified
Added
Removed
  • titan/plugins/callmonitor1/callmonitor1.c

    r13781 r16898  
    4343}
    4444
    45         //wird in der Pluginverwaltung bzw Menue ausfeguehrt
     45//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    4646void start(void)
    4747{
  • titan/plugins/instar/instar.c

    r16140 r16898  
    3333}
    3434
    35         //wird in der Pluginverwaltung bzw Menue ausfeguehrt
     35//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    3636void start(void)
    3737{
  • titan/plugins/keylock/keylock.c

    r16517 r16898  
    6565}
    6666
    67 
    6867//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    6968void start(void)
  • titan/plugins/mboxinfo/mboxinfo.c

    r16512 r16898  
    2929        debug(10, "Mbox Info Plugin removed !!!");
    3030}
    31 
    3231
    3332int show_info(char *titelname, char *filename)
  • titan/plugins/mc/mc.c

    r14232 r16898  
    6464}
    6565
    66 
    6766//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    6867void start(void)
  • titan/plugins/networkbrowser/networkbrowser.c

    r15268 r16898  
    4747}
    4848
    49 
    5049//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    5150void start(void)
  • titan/plugins/panel/panel.c

    r16055 r16898  
    5252}
    5353
    54 
    5554//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    5655void start(void)
  • titan/plugins/permtime/permtime.c

    r16517 r16898  
    7676}
    7777
    78 
    7978//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    8079void start(void)
  • titan/plugins/plugin_skin_ID.txt

    r16101 r16898  
    2020streaminfo: 225
    2121tmc: 230
     22tfile: 240
    2223TopfieldVFD: ---
    2324browser: ---
  • titan/plugins/stock/stock.c

    r15650 r16898  
    3333}
    3434
    35 
    3635//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    3736void start(void)
  • titan/plugins/stopifnotused/stopifnotused.c

    r16512 r16898  
    33#include "../../titan/header.h"
    44#include "../../titan/list.h"
    5 
    65
    76char pluginname[] = "Stop if not used";
     
    1211
    1312struct stimerthread* StopIfNotUsed = NULL;
    14 
    1513
    1614void StopIfNotUsed_thread()
     
    7775}
    7876
    79         //wird in der Pluginverwaltung bzw Menue ausfeguehrt
     77//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    8078void start(void)
    8179{
     
    157155        }
    158156               
    159        
    160157        delownerrc(notused_main);
    161158        clearscreen(notused_main);
    162        
    163159}
  • titan/plugins/streaminfo/streaminfo.c

    r15561 r16898  
    3333}
    3434
    35 
    3635//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    3736void start(void)
  • titan/plugins/tmc/tmc.c

    r16221 r16898  
    3333}
    3434
    35 
    3635//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    3736void start(void)
  • titan/plugins/tmc/tmc.h

    r16882 r16898  
    3030//Audio
    3131int menu4pos = 0;
    32 char* menu4[] = {"skin/tmccategory.png", "skin/tmcrandom.png", "skin/tmcall.png", "skin/tmcone.png", "skin/tmcaz.png", "skin/tmcback.png"};
    33 char* menu4txt[] = {"Category", "Random", "All", "Single", "A-Z", "Back"};
     32char* menu4[] = {"skin/tmccategory.png", "skin/tmcrandom.png", "skin/tmcall.png", "skin/tmcone.png", "skin/tmcgenre.png", "skin/tmcyear.png", "skin/tmcactors.png", "skin/tmcaz.png", "skin/tmcback.png"};
     33char* menu4txt[] = {"Category", "Random", "All", "Single", "Genre", "Year", "Actors", "A-Z", "Back"};
     34
    3435
    3536//flag 0: blit
     
    15421543                                        free(tmpstr); tmpstr = NULL;
    15431544                                }
     1545                                else if(menuid == 4 && ostrcmp("Genre", tmcmenutxt->ret) == 0)
     1546                                {
     1547                                        tmpstr = screentmccategory(1, ".genre");
     1548                                        if(tmpstr != NULL)
     1549                                        {
     1550                                                mediadbfilterpos = NULL;
     1551                                                mediadbfiltercount = createmediadbfilter(1, tmpstr, 6);
     1552                                                tmcpicscroll(menuid, tmcpictitle, tmcpicstar, tmcstatus, tmcpic1, tmcpic2, tmcpic3, tmcpic4, tmcpic5, tmcpictitlebg, tmcpicstarbg, tmcstatusbg, 0);
     1553                                        }
     1554                                        free(tmpstr); tmpstr = NULL;
     1555                                }
     1556        else if(menuid == 4 && ostrcmp("Year", tmcmenutxt->ret) == 0)
     1557                                {
     1558                                        tmpstr = screentmccategory(1, ".year");
     1559                                        if(tmpstr != NULL)
     1560                                        {
     1561                                                mediadbfilterpos = NULL;
     1562                                                mediadbfiltercount = createmediadbfilter(1, tmpstr, 1);
     1563                                                tmcpicscroll(menuid, tmcpictitle, tmcpicstar, tmcstatus, tmcpic1, tmcpic2, tmcpic3, tmcpic4, tmcpic5, tmcpictitlebg, tmcpicstarbg, tmcstatusbg, 0);
     1564                                        }
     1565                                        free(tmpstr); tmpstr = NULL;
     1566                                }
     1567        else if(menuid == 4 && ostrcmp("Actors", tmcmenutxt->ret) == 0)
     1568                                {
     1569                                        tmpstr = screentmccategory(1, ".actors");
     1570                                        if(tmpstr != NULL)
     1571                                        {
     1572                                                mediadbfilterpos = NULL;
     1573                                                mediadbfiltercount = createmediadbfilter(1, tmpstr, 3);
     1574                                                tmcpicscroll(menuid, tmcpictitle, tmcpicstar, tmcstatus, tmcpic1, tmcpic2, tmcpic3, tmcpic4, tmcpic5, tmcpictitlebg, tmcpicstarbg, tmcstatusbg, 0);
     1575                                        }
     1576                                        free(tmpstr); tmpstr = NULL;
     1577                                }
    15441578                                else if(menuid == 4 && ostrcmp("A-Z", tmcmenutxt->ret) == 0)
    15451579                                {
  • titan/plugins/tmdb/tmdb.c

    r16583 r16898  
    4343}
    4444
    45 
    4645//wird in der Pluginverwaltung bzw Menue ausfeguehrt
    4746void start(void)
Note: See TracChangeset for help on using the changeset viewer.