Beiträge von moalmoe

    Starting a plugin directly in enigma1 (like from your own menu), could be done by code like this:


    eZapPlugins plugins(2);
    plugins.execPluginByName("plugin.cfg");



    Is there a similar easy way to open a plugin directly in Enigma2, without going through the plugin menu ?

    I can read a value from the config file with:
    eConfig::getInstance()->getKey("/enigma/timeoutInfobar", timeoutInfobar)


    But if I try to write to the same key from my own menu using:
    eConfig::getInstance()->setKey("/enigma/timeoutInfobar", 5);


    Then it does not work.


    Is there someting I'm missing ?

    OK, done a bit more investigating.


    Is I set up a eListBoxEntryMulti (like the timeout_infobar) in an eSetupWindow I cannot change the value of this listbox by pressing left or right. That just shift the "cursor" to either the top or bottom of the menu.


    If I set up a eListBox<eListBoxEntryText> in an eWindow the left/right pressing works.
    Could this be because of the setFlags(eListBox<eListBoxEntryText>::flagNoUpDownMovement); setting ?


    If so, is there a similar setting for the eListBoxEntryMulti ?

    Hi,


    I'm writing som code to try to understand/learn.
    And have set up a new menu opened from the expert seup menu.
    In this menu I have set up a choice list equal to the infobar timeout and an eListBoxEntryCheck.
    The infobar code is exactly the same as in the CVS (listed below).
    Everything compiles correctly, but when I try to press right when the infobar timeout setting is selected I'm just moved to the bottom of the menu. Pressing left moves me to the top of the menu.


    In the orignial extra settings menu this is not the case.


    What am I missing ??


    Hi,


    I have made a 7025 image by using the "make image" method.
    This is with CVS date 20060104.


    Updated the date in enigma2.bb and tried updating enigma2.


    But in between those 2 dates fribidi is enabled, so the prosess stops with
    "package fribidi was not found in the pkg-config search path"..


    I found the fribidi.pc file in /usr/lib/pkgconfig and tried to do an "export PKG_CONFIG_PATH=/usr/lib/pkgconfig but it still complaines about "..fribidi was not found..."


    I'm running Mandriva 2006..


    Any ideas ?