Include dependency graph for main_interface.cpp:

Data Structures | |
| class | SetVideoOnTopQtEvent |
Defines | |
| #define | SET_WIDTH(i, j) i->widgetSize.setWidth(j) |
| #define | SET_HEIGHT(i, j) i->widgetSize.setHeight(j) |
| #define | SET_WH(i, j, k) i->widgetSize.setWidth(j); i->widgetSize.setHeight(k); |
| #define | DS(i) i.width(),i.height() |
| #define | CONFIG_GENERIC(option, type) |
| #define | CONFIG_GENERIC_NOBOOL(option, type) |
Functions | |
| static int | PopupMenuCB (vlc_object_t *p_this, const char *psz_variable, vlc_value_t old_val, vlc_value_t new_val, void *param) |
| static int | IntfShowCB (vlc_object_t *p_this, const char *psz_variable, vlc_value_t old_val, vlc_value_t new_val, void *param) |
| static int | InteractCallback (vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void *) |
| #define CONFIG_GENERIC | ( | option, | |||
| type | ) |
Value:
p_config = config_FindConfig( VLC_OBJECT(p_intf), option ); \ if( p_config ) \ { \ control = new type ## ConfigControl( VLC_OBJECT(p_intf), \ p_config, options, false, optionsLayout, line ); \ controls->append( control ); \ }
| #define CONFIG_GENERIC_NOBOOL | ( | option, | |||
| type | ) |
Value:
p_config = config_FindConfig( VLC_OBJECT(p_intf), option ); \ if( p_config ) \ { \ control = new type ## ConfigControl( VLC_OBJECT(p_intf), \ p_config, options, optionsLayout, line ); \ controls->append( control ); \ }
| #define DS | ( | i | ) | i.width(),i.height() |
| #define SET_HEIGHT | ( | i, | |||
| j | ) | i->widgetSize.setHeight(j) |
| #define SET_WH | ( | i, | |||
| j, | |||||
| k | ) | i->widgetSize.setWidth(j); i->widgetSize.setHeight(k); |
| #define SET_WIDTH | ( | i, | |||
| j | ) | i->widgetSize.setWidth(j) |
| static int InteractCallback | ( | vlc_object_t * | , | |
| const char * | , | |||
| vlc_value_t | , | |||
| vlc_value_t | , | |||
| void * | ||||
| ) | [static] |
| static int IntfShowCB | ( | vlc_object_t * | p_this, | |
| const char * | psz_variable, | |||
| vlc_value_t | old_val, | |||
| vlc_value_t | new_val, | |||
| void * | param | |||
| ) | [static] |
| static int PopupMenuCB | ( | vlc_object_t * | p_this, | |
| const char * | psz_variable, | |||
| vlc_value_t | old_val, | |||
| vlc_value_t | new_val, | |||
| void * | param | |||
| ) | [static] |
1.5.1